/* style/resources-how-to-register-alo789.css */

:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --register-button-bg: #C30808;
  --login-button-bg: #C30808;
  --register-login-text: #FFFF00;
}

.page-resources-how-to-register-alo789 {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Body background is light, so text is dark */
  background-color: var(--secondary-color); /* White background from shared.css */
}

.page-resources-how-to-register-alo789__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-how-to-register-alo789__hero-section {
  position: relative;
  padding: 100px 20px 60px; /* Adjust top padding for header offset */
  padding-top: var(--header-offset, 120px);
  text-align: center;
  background: var(--primary-color);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-resources-how-to-register-alo789__dark-bg {
  background: var(--primary-color);
  color: var(--text-light);
}

.page-resources-how-to-register-alo789__light-bg {
  background: var(--secondary-color);
  color: var(--text-dark);
}

.page-resources-how-to-register-alo789__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.2;
}

.page-resources-how-to-register-alo789__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-how-to-register-alo789__btn-primary,
.page-resources-how-to-register-alo789__final-cta {
  display: inline-block;
  background: var(--register-button-bg);
  color: var(--register-login-text);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

.page-resources-how-to-register-alo789__btn-primary:hover,
.page-resources-how-to-register-alo789__final-cta:hover {
  background-color: darken(var(--register-button-bg), 10%); /* Example of darkening, actual CSS would use a fixed color */
  background-color: #a30606;
}

.page-resources-how-to-register-alo789__content-area {
  padding: 60px 20px;
}

.page-resources-how-to-register-alo789__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
}

.page-resources-how-to-register-alo789__sub-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-resources-how-to-register-alo789__step-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-how-to-register-alo789 p {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-resources-how-to-register-alo789 a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-resources-how-to-register-alo789 a:hover {
  color: darken(var(--primary-color), 10%);
}

.page-resources-how-to-register-alo789__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-resources-how-to-register-alo789__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-resources-how-to-register-alo789__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section Styling */
.page-resources-how-to-register-alo789__faq-list {
  margin-top: 40px;
}

.page-resources-how-to-register-alo789__faq-item {
  background-color: var(--secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-how-to-register-alo789__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--primary-color);
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
  list-style: none; /* For details/summary */
}

.page-resources-how-to-register-alo789__faq-item[open] > .page-resources-how-to-register-alo789__faq-question {
  border-bottom: 1px solid var(--primary-color);
}

.page-resources-how-to-register-alo789__faq-qtext {
  flex-grow: 1;
}

.page-resources-how-to-register-alo789__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  line-height: 1;
  color: var(--primary-color);
}

.page-resources-how-to-register-alo789__faq-answer {
  padding: 20px 25px;
  background-color: var(--secondary-color);
  font-size: 1em;
  color: var(--text-dark);
}

.page-resources-how-to-register-alo789__faq-answer p {
  margin-bottom: 0;
}

/* Remove default marker for details/summary */
.page-resources-how-to-register-alo789__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-resources-how-to-register-alo789__faq-item summary {
  list-style: none;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-resources-how-to-register-alo789__hero-section {
    padding: 80px 15px 40px;
    padding-top: var(--header-offset, 120px) !important;
    min-height: 300px;
  }

  .page-resources-how-to-register-alo789__main-title {
    font-size: 2em;
  }

  .page-resources-how-to-register-alo789__description {
    font-size: 1em;
  }

  .page-resources-how-to-register-alo789__btn-primary,
  .page-resources-how-to-register-alo789__final-cta {
    padding: 12px 20px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-how-to-register-alo789__content-area {
    padding: 40px 15px;
  }

  .page-resources-how-to-register-alo789__section-title {
    font-size: 1.8em;
  }

  .page-resources-how-to-register-alo789__sub-title {
    font-size: 1.5em;
  }

  .page-resources-how-to-register-alo789__step-title {
    font-size: 1.2em;
  }

  /* Ensure images are responsive */
  .page-resources-how-to-register-alo789 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Ensure video is responsive */
  .page-resources-how-to-register-alo789 video,
  .page-resources-how-to-register-alo789__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-resources-how-to-register-alo789__video-section,
  .page-resources-how-to-register-alo789__video-container,
  .page-resources-how-to-register-alo789__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Containers for responsive content */
  .page-resources-how-to-register-alo789__section,
  .page-resources-how-to-register-alo789__card,
  .page-resources-how-to-register-alo789__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Button group for multiple buttons */
  .page-resources-how-to-register-alo789__cta-buttons,
  .page-resources-how-to-register-alo789__button-group,
  .page-resources-how-to-register-alo789__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important; /* Allow buttons to wrap */
    gap: 10px;
  }

  .page-resources-how-to-register-alo789__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-resources-how-to-register-alo789__faq-answer {
    padding: 15px 20px;
  }
}