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

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

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

.page-index-quick-registration-guide__section:nth-of-type(even) {
  background-color: #f8f8f8;
}

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

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

.page-index-quick-registration-guide__section-description {
  font-size: 1.1em;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-index-quick-registration-guide__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-index-quick-registration-guide__btn--primary {
  background-color: #FFD700;
  color: #0A2E5B;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-index-quick-registration-guide__btn--primary:hover {
  background-color: #e6c200;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-index-quick-registration-guide__btn--secondary {
  background-color: #0A2E5B;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-quick-registration-guide__btn--secondary:hover {
  background-color: #071f3f;
  color: #fff;
  border-color: #fff;
}

.page-index-quick-registration-guide__btn--center {
  margin-top: 30px;
}

.page-index-quick-registration-guide__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

/* Hero Section */
.page-index-quick-registration-guide__hero-section {
  background: linear-gradient(135deg, #0A2E5B 0%, #2a5a8a 100%);
  padding: 100px 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: left;
}

.page-index-quick-registration-guide__hero-content {
  max-width: 600px;
  margin-right: 40px;
}

.page-index-quick-registration-guide__hero-image-wrapper {
  flex-shrink: 0;
}

.page-index-quick-registration-guide__hero-image {
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-index-quick-registration-guide__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Why 7club Section */
.page-index-quick-registration-guide__why-7club {
  background-color: #fff;
}

.page-index-quick-registration-guide__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-quick-registration-guide__feature-item {
  background-color: #f0f4f8;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-quick-registration-guide__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-index-quick-registration-guide__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-index-quick-registration-guide__feature-title {
  font-size: 1.5em;
  color: #0A2E5B;
  margin-bottom: 15px;
}

.page-index-quick-registration-guide__feature-text {
  color: #666;
  font-size: 1em;
}

/* Registration Guide Section */
.page-index-quick-registration-guide__registration-guide {
  background-color: #f0f4f8;
}

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

.page-index-quick-registration-guide__step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-index-quick-registration-guide__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
  background-color: #0A2E5B;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-index-quick-registration-guide__step-title {
  font-size: 1.6em;
  color: #0A2E5B;
  margin-bottom: 15px;
}

.page-index-quick-registration-guide__step-text {
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-quick-registration-guide__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.page-index-quick-registration-guide__benefits-list {
  list-style: none;
  padding: 0;
  margin: 50px auto 0;
  max-width: 800px;
  text-align: left;
}

.page-index-quick-registration-guide__benefits-list li {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.page-index-quick-registration-guide__list-icon {
  color: #FFD700;
  font-size: 1.5em;
  margin-right: 15px;
  line-height: 1;
}

/* App Download Section */
.page-index-quick-registration-guide__app-download {
  background: linear-gradient(90deg, #0A2E5B, #1a4a7a);
  color: #fff;
}

.page-index-quick-registration-guide__app-flex {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
}

.page-index-quick-registration-guide__app-content {
  flex: 1;
}

.page-index-quick-registration-guide__app-download .page-index-quick-registration-guide__section-title {
  color: #FFD700;
}

.page-index-quick-registration-guide__app-download .page-index-quick-registration-guide__section-description {
  color: #e0e0e0;
}

.page-index-quick-registration-guide__app-image-wrapper {
  flex-shrink: 0;
}

.page-index-quick-registration-guide__app-image {
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-index-quick-registration-guide__download-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.page-index-quick-registration-guide__btn--app {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #FFD700;
  color: #0A2E5B;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1em;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-index-quick-registration-guide__btn--app:hover {
  background-color: #e6c200;
}

.page-index-quick-registration-guide__app-icon {
  width: 24px;
  height: 24px;
}

/* FAQ Section */
.page-index-quick-registration-guide__faq {
  background-color: #fff;
}

.page-index-quick-registration-guide__faq-item {
  background-color: #f0f4f8;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-index-quick-registration-guide__faq-answer {
  font-size: 1.1em;
  color: #666;
  display: none; /* Hidden by default */
  padding-top: 10px;
  border-top: 1px solid #e0e0e0;
  margin-top: 10px;
}

/* Active FAQ item */
.page-index-quick-registration-guide__faq-item.active .page-index-quick-registration-guide__faq-question::after {
  content: '-';
}

.page-index-quick-registration-guide__faq-item.active .page-index-quick-registration-guide__faq-answer {
  display: block;
}

/* Call to Action Section */
.page-index-quick-registration-guide__cta {
  background-color: #0A2E5B;
  color: #fff;
  padding: 80px 0;
}

.page-index-quick-registration-guide__cta .page-index-quick-registration-guide__section-title {
  color: #FFD700;
}

.page-index-quick-registration-guide__cta .page-index-quick-registration-guide__section-description {
  color: #e0e0e0;
  margin-bottom: 50px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-quick-registration-guide__hero-section {
    padding: 80px 0;
  }
  .page-index-quick-registration-guide__hero-content {
    margin-right: 0;
    text-align: center;
  }
  .page-index-quick-registration-guide__hero-title {
    font-size: 2.8em;
  }
  .page-index-quick-registration-guide__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-quick-registration-guide__hero-image-wrapper {
    display: none;
  }
  .page-index-quick-registration-guide__app-flex {
    flex-direction: column;
    text-align: center;
  }
  .page-index-quick-registration-guide__app-image-wrapper {
    margin-top: 40px;
  }
  .page-index-quick-registration-guide__download-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-index-quick-registration-guide__section-title {
    font-size: 2em;
  }
  .page-index-quick-registration-guide__section-description {
    font-size: 1em;
  }
  .page-index-quick-registration-guide__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-quick-registration-guide__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-index-quick-registration-guide__hero-title {
    font-size: 2.2em;
  }
  .page-index-quick-registration-guide__features-grid,
  .page-index-quick-registration-guide__steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-index-quick-registration-guide__hero-section {
    padding: 60px 0;
  }
  .page-index-quick-registration-guide__hero-title {
    font-size: 1.8em;
  }
  .page-index-quick-registration-guide__hero-subtitle {
    font-size: 0.9em;
  }
  .page-index-quick-registration-guide__section {
    padding: 40px 0;
  }
  .page-index-quick-registration-guide__section-title {
    font-size: 1.8em;
  }
  .page-index-quick-registration-guide__feature-item,
  .page-index-quick-registration-guide__step-item,
  .page-index-quick-registration-guide__faq-item {
    padding: 20px;
  }
  .page-index-quick-registration-guide__download-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-index-quick-registration-guide__app-image {
    max-width: 100%;
  }
}