/* style/index-quick-registration.css */
.page-index-quick-registration {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #e0e0e0; /* Light gray for general text on dark background */
  background-color: #0A2342; /* Main dark blue background */
}

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

.page-index-quick-registration__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  font-weight: bold;
}

.page-index-quick-registration__section-description {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-quick-registration__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
}

.page-index-quick-registration__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A2342; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-index-quick-registration__btn--primary:hover {
  background-color: #e6c200;
  color: #0A2342;
}

.page-index-quick-registration__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-index-quick-registration__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
}

.page-index-quick-registration__btn--download {
  background-color: #0A2342;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-right: 15px;
  margin-bottom: 15px;
}

.page-index-quick-registration__btn--download:hover {
  background-color: #FFD700;
  color: #0A2342;
}

/* Hero Section */
.page-index-quick-registration__hero {
  background: linear-gradient(135deg, #0A2342 0%, #1a3a6b 100%); /* Dark blue gradient */
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-quick-registration__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-index-quick-registration__hero-subtitle {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-quick-registration__hero-image-wrapper {
  margin-top: 50px;
}

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

/* Benefits Section */
.page-index-quick-registration__benefits {
  padding: 80px 0;
  background-color: #0A2342;
}

.page-index-quick-registration__benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index-quick-registration__benefit-item {
  background-color: #1a3a6b; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-index-quick-registration__benefit-item:hover {
  transform: translateY(-10px);
}

.page-index-quick-registration__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(80%) saturate(1500%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Make icons gold */
}

.page-index-quick-registration__benefit-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-quick-registration__benefit-description {
  font-size: 1em;
  color: #cccccc;
}

/* Registration Guide Section */
.page-index-quick-registration__registration-guide {
  padding: 80px 0;
  background-color: #0A2342;
  position: relative;
}

.page-index-quick-registration__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-index-quick-registration__step-item {
  background-color: #1a3a6b;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
  padding-top: 60px; /* Space for number */
}

.page-index-quick-registration__step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700; /* Gold */
  color: #0A2342; /* Dark blue */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  border: 3px solid #0A2342;
  box-shadow: 0 0 0 5px #1a3a6b; /* Outer ring matches card */
}

.page-index-quick-registration__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-quick-registration__step-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-index-quick-registration__link-text {
  color: #FFD700;
  text-decoration: underline;
}

.page-index-quick-registration__link-text:hover {
  color: #e6c200;
}

.page-index-quick-registration__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-index-quick-registration__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

/* App Download Section */
.page-index-quick-registration__app-download {
  padding: 80px 0;
  background-color: #1a3a6b;
}

.page-index-quick-registration__app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
}

.page-index-quick-registration__app-text {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  text-align: center;
}

.page-index-quick-registration__app-text p {
  font-size: 1.1em;
  color: #cccccc;
  margin-bottom: 30px;
}

.page-index-quick-registration__app-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.page-index-quick-registration__qr-hint {
  font-size: 0.95em;
  color: #999999;
  margin-top: 15px;
}

.page-index-quick-registration__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  text-align: center;
}

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

/* Promotions Section */
.page-index-quick-registration__promotions {
  padding: 80px 0;
  background-color: #0A2342;
}

.page-index-quick-registration__promotion-list {
  list-style: none;
  padding: 0;
  margin: 50px auto;
  max-width: 800px;
}

.page-index-quick-registration__promotion-list li {
  background-color: #1a3a6b;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #f0f0f0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FFD700;
}

.page-index-quick-registration__promotion-list li strong {
  color: #FFD700;
}

.page-index-quick-registration__cta-promotions {
  text-align: center;
  margin-top: 50px;
}

/* FAQ Section */
.page-index-quick-registration__faq {
  padding: 80px 0;
  background-color: #1a3a6b;
}

.page-index-quick-registration__faq-list {
  max-width: 900px;
  margin: 50px auto 0;
}

.page-index-quick-registration__faq-item {
  background-color: #0A2342;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-index-quick-registration__faq-question {
  font-size: 1.2em;
  color: #FFD700;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
}

.page-index-quick-registration__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-index-quick-registration__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-quick-registration__faq-answer {
  font-size: 1em;
  color: #cccccc;
  padding: 0 25px 20px;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-index-quick-registration__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content length */
  padding: 0 25px 20px;
}

/* Final CTA Section */
.page-index-quick-registration__final-cta {
  padding: 80px 0;
  background-color: #0A2342;
  text-align: center;
}

.page-index-quick-registration__final-cta .page-index-quick-registration__btn {
  margin: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-quick-registration__hero-title {
    font-size: 2.8em;
  }
  .page-index-quick-registration__section-title {
    font-size: 2em;
  }
  .page-index-quick-registration__app-content {
    flex-direction: column;
  }
  .page-index-quick-registration__app-text, .page-index-quick-registration__app-image-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-index-quick-registration__hero {
    padding: 60px 0 30px;
  }
  .page-index-quick-registration__hero-title {
    font-size: 2.2em;
  }
  .page-index-quick-registration__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-quick-registration__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 10px 5px;
  }
  .page-index-quick-registration__btn--secondary {
    margin-left: 0;
  }
  .page-index-quick-registration__section-title {
    font-size: 1.8em;
  }
  .page-index-quick-registration__section-description {
    font-size: 1em;
  }
  .page-index-quick-registration__benefit-grid, .page-index-quick-registration__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-index-quick-registration__step-number {
    top: -20px;
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
  .page-index-quick-registration__step-item {
    padding-top: 50px;
  }
  .page-index-quick-registration__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-index-quick-registration__faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-index-quick-registration__hero-title {
    font-size: 1.8em;
  }
  .page-index-quick-registration__hero-subtitle {
    font-size: 0.95em;
  }
  .page-index-quick-registration__btn {
    width: 100%;
    margin: 10px 0;
  }
  .page-index-quick-registration__app-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-index-quick-registration__app-buttons .page-index-quick-registration__btn {
    margin-right: 0;
  }
}