/* style/resources-tx-b52-registration-guide.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --btn-login-color: #EA7C07;
}

.page-resources-tx-b52-registration-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--black-color, #000000);
}

.page-resources-tx-b52-registration-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-tx-b52-registration-guide__hero-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
}

.page-resources-tx-b52-registration-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3;
}

.page-resources-tx-b52-registration-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-tx-b52-registration-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  color: var(--text-light);
}

.page-resources-tx-b52-registration-guide__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-tx-b52-registration-guide__btn-primary,
.page-resources-tx-b52-registration-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-resources-tx-b52-registration-guide__btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-tx-b52-registration-guide__btn-primary:hover {
  background-color: #1e87bb;
  border-color: #1e87bb;
}

.page-resources-tx-b52-registration-guide__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-tx-b52-registration-guide__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-resources-tx-b52-registration-guide__btn-large {
  font-size: 1.2em;
  padding: 18px 35px;
}

.page-resources-tx-b52-registration-guide__content-area {
  padding: 60px 0;
}

.page-resources-tx-b52-registration-guide__dark-bg {
  background-color: #1a1a1a; /* Slightly lighter dark to ensure contrast with primary color elements */
  color: var(--text-light);
}

.page-resources-tx-b52-registration-guide__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.page-resources-tx-b52-registration-guide__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-tx-b52-registration-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-resources-tx-b52-registration-guide__dark-bg .page-resources-tx-b52-registration-guide__section-title {
  color: var(--text-light);
}

.page-resources-tx-b52-registration-guide__light-bg .page-resources-tx-b52-registration-guide__section-title {
  color: var(--text-dark);
}

.page-resources-tx-b52-registration-guide__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-tx-b52-registration-guide__paragraph a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-resources-tx-b52-registration-guide__step-list,
.page-resources-tx-b52-registration-guide__benefits-list,
.page-resources-tx-b52-registration-guide__troubleshoot-list,
.page-resources-tx-b52-registration-guide__tips-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-resources-tx-b52-registration-guide__list-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-light);
}

.page-resources-tx-b52-registration-guide__light-bg .page-resources-tx-b52-registration-guide__list-item {
  background-color: #f9f9f9;
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-tx-b52-registration-guide__list-item h3 {
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-resources-tx-b52-registration-guide__list-item p {
  margin-bottom: 10px;
  text-align: justify;
}

.page-resources-tx-b52-registration-guide__sub-list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-resources-tx-b52-registration-guide__image-full-width,
.page-resources-tx-b52-registration-guide__image-step,
.page-resources-tx-b52-registration-guide__image-content {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-tx-b52-registration-guide__video-section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-tx-b52-registration-guide__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-resources-tx-b52-registration-guide__video,
.page-resources-tx-b52-registration-guide__video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
}

.page-resources-tx-b52-registration-guide__faq-section {
  padding: 60px 0;
}

.page-resources-tx-b52-registration-guide__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-tx-b52-registration-guide__faq-item {
  background-color: var(--secondary-color);
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.page-resources-tx-b52-registration-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #f0f0f0;
  color: var(--text-dark);
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-resources-tx-b52-registration-guide__faq-question h3 {
  margin: 0;
  font-size: 1.2em;
}

.page-resources-tx-b52-registration-guide__faq-question:hover {
  background-color: #e0e0e0;
}

.page-resources-tx-b52-registration-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-tx-b52-registration-guide__faq-item.active .page-resources-tx-b52-registration-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-tx-b52-registration-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-dark);
}

.page-resources-tx-b52-registration-guide__faq-item.active .page-resources-tx-b52-registration-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 20px;
}

.page-resources-tx-b52-registration-guide__cta-bottom {
  padding: 60px 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-tx-b52-registration-guide__hero-title {
    font-size: 2.8em;
  }

  .page-resources-tx-b52-registration-guide__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-tx-b52-registration-guide__hero-section {
    padding: 80px 0;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-tx-b52-registration-guide__hero-title {
    font-size: 2.2em;
  }

  .page-resources-tx-b52-registration-guide__hero-description {
    font-size: 1em;
  }

  .page-resources-tx-b52-registration-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-tx-b52-registration-guide__btn-primary,
  .page-resources-tx-b52-registration-guide__btn-secondary,
  .page-resources-tx-b52-registration-guide a[class*="button"],
  .page-resources-tx-b52-registration-guide a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-tx-b52-registration-guide__cta-buttons,
  .page-resources-tx-b52-registration-guide__button-group,
  .page-resources-tx-b52-registration-guide__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-resources-tx-b52-registration-guide__content-area,
  .page-resources-tx-b52-registration-guide__video-section,
  .page-resources-tx-b52-registration-guide__faq-section,
  .page-resources-tx-b52-registration-guide__cta-bottom {
    padding: 40px 0;
  }

  .page-resources-tx-b52-registration-guide__container {
    padding: 0 15px;
  }

  .page-resources-tx-b52-registration-guide__section-title {
    font-size: 1.8em;
  }

  .page-resources-tx-b52-registration-guide__list-item {
    padding: 20px;
  }

  .page-resources-tx-b52-registration-guide__list-item h3 {
    font-size: 1.3em;
  }

  .page-resources-tx-b52-registration-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-tx-b52-registration-guide__section,
  .page-resources-tx-b52-registration-guide__card,
  .page-resources-tx-b52-registration-guide__container,
  .page-resources-tx-b52-registration-guide__video-section,
  .page-resources-tx-b52-registration-guide__video-container,
  .page-resources-tx-b52-registration-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-resources-tx-b52-registration-guide video,
  .page-resources-tx-b52-registration-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-tx-b52-registration-guide__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}

@media (max-width: 480px) {
  .page-resources-tx-b52-registration-guide__hero-title {
    font-size: 1.8em;
  }

  .page-resources-tx-b52-registration-guide__section-title {
    font-size: 1.5em;
  }

  .page-resources-tx-b52-registration-guide__list-item h3 {
    font-size: 1.1em;
  }
}