/* style/index-quick-register-login.css */
.page-index-quick-register-login {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-index-quick-register-login__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-quick-register-login__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-quick-register-login__section:nth-of-type(even) {
  background-color: #f0f0f0;
}

.page-index-quick-register-login__section-title {
  font-size: 2.5em;
  color: #0A6847;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-index-quick-register-login__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-index-quick-register-login__section-description {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-quick-register-login__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  margin: 10px;
}

.page-index-quick-register-login__btn--primary {
  background-color: #0A6847;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(10, 104, 71, 0.4);
}

.page-index-quick-register-login__btn--primary:hover {
  background-color: #074b33;
  transform: translateY(-2px);
}

.page-index-quick-register-login__btn--secondary {
  background-color: #FFD700;
  color: #333333;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-index-quick-register-login__btn--secondary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-quick-register-login__btn--app-android, 
.page-index-quick-register-login__btn--app-ios {
  background-color: #0A6847;
  color: #FFFFFF;
  padding: 12px 25px;
  font-size: 1em;
  margin: 5px;
}

.page-index-quick-register-login__btn--app-android:hover, 
.page-index-quick-register-login__btn--app-ios:hover {
  background-color: #074b33;
}

.page-index-quick-register-login__link {
  color: #0A6847;
  text-decoration: none;
  font-weight: bold;
}

.page-index-quick-register-login__link:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-index-quick-register-login__hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0A6847, #2c8e6a);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: left;
}

.page-index-quick-register-login__hero-content {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
  max-width: 600px;
}

.page-index-quick-register-login__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700;
}

.page-index-quick-register-login__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-index-quick-register-login__hero-actions .page-index-quick-register-login__btn {
  margin-top: 20px;
}

.page-index-quick-register-login__hero-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index-quick-register-login__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Benefits Section */
.page-index-quick-register-login__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-quick-register-login__benefit-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-index-quick-register-login__benefit-item:hover {
  transform: translateY(-5px);
}

.page-index-quick-register-login__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-index-quick-register-login__benefit-item h3 {
  font-size: 1.5em;
  color: #0A6847;
  margin-bottom: 15px;
}

.page-index-quick-register-login__benefit-item p {
  color: #666;
}

/* Register Guide Section */
.page-index-quick-register-login__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-quick-register-login__step-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.page-index-quick-register-login__step-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-index-quick-register-login__step-item h3 {
  font-size: 1.4em;
  color: #0A6847;
  margin-bottom: 10px;
}

.page-index-quick-register-login__step-item p {
  color: #666;
}

.page-index-quick-register-login__center-cta {
  margin-top: 40px;
}

/* Login Guide Section */
.page-index-quick-register-login__login-steps {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 40px auto 0;
  text-align: left;
}

.page-index-quick-register-login__login-steps li {
  background-color: #FFFFFF;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #333;
}

.page-index-quick-register-login__login-steps li strong {
  color: #0A6847;
}

/* App Download Section */
.page-index-quick-register-login__section--app-download {
  background-color: #0A6847;
  color: #FFFFFF;
}

.page-index-quick-register-login__section--app-download .page-index-quick-register-login__section-title {
  color: #FFD700;
}

.page-index-quick-register-login__section--app-download .page-index-quick-register-login__section-description {
  color: #e0e0e0;
}

.page-index-quick-register-login__app-flex-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.page-index-quick-register-login__app-content {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
  max-width: 600px;
}

.page-index-quick-register-login__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index-quick-register-login__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index-quick-register-login__app-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-index-quick-register-login__app-features li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-index-quick-register-login__list-icon {
  width: 25px;
  height: 25px;
  margin-right: 15px;
  filter: invert(80%) sepia(80%) saturate(2000%) hue-rotate(30deg) brightness(100%) contrast(100%); /* Gold tint */
}

.page-index-quick-register-login__app-download-btns {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* FAQ Section */
.page-index-quick-register-login__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

.page-index-quick-register-login__faq-item {
  background-color: #FFFFFF;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.07);
}

.page-index-quick-register-login__faq-question {
  font-size: 1.3em;
  color: #0A6847;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-quick-register-login__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-index-quick-register-login__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-index-quick-register-login__faq-answer {
  font-size: 1em;
  color: #555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
}

.page-index-quick-register-login__faq-answer.active {
  max-height: 500px; /* Arbitrary large value */
  opacity: 1;
  padding-top: 10px;
}

/* Final CTA Section */
.page-index-quick-register-login__section--cta-final {
  background-color: #f0f0f0;
  padding-bottom: 80px;
}

.page-index-quick-register-login__text-small {
  font-size: 0.95em;
  color: #666;
  margin-top: 20px;
}

.page-index-quick-register-login__disclaimer {
  background-color: #333;
  color: #bbb;
  padding: 20px 0;
  font-size: 0.9em;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-quick-register-login__hero {
    flex-direction: column;
    text-align: center;
  }
  .page-index-quick-register-login__hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .page-index-quick-register-login__hero-title {
    font-size: 2.8em;
  }
  .page-index-quick-register-login__app-flex-container {
    flex-direction: column;
    text-align: center;
  }
  .page-index-quick-register-login__app-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .page-index-quick-register-login__app-download-btns {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-index-quick-register-login__section-title {
    font-size: 2em;
  }
  .page-index-quick-register-login__hero-title {
    font-size: 2.2em;
  }
  .page-index-quick-register-login__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-quick-register-login__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-quick-register-login__benefits-grid, 
  .page-index-quick-register-login__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-index-quick-register-login__benefit-item, 
  .page-index-quick-register-login__step-item {
    padding: 25px;
  }
  .page-index-quick-register-login__login-steps li {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-index-quick-register-login__hero-title {
    font-size: 1.8em;
  }
  .page-index-quick-register-login__hero-subtitle {
    font-size: 1em;
  }
  .page-index-quick-register-login__btn {
    padding: 10px 20px;
    font-size: 0.9em;
    margin: 5px;
  }
  .page-index-quick-register-login__app-download-btns {
    flex-direction: column;
    align-items: center;
  }
  .page-index-quick-register-login__btn--app-android, 
  .page-index-quick-register-login__btn--app-ios {
    width: 80%;
    max-width: 250px;
  }
}