/* style/index-faq-highlights.css */
.page-index-faq-highlights {
  font-family: 'Arial', sans-serif;
  color: #1A2B4C; /* Main text color, dark blue */
  line-height: 1.6;
}

.page-index-faq-highlights-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-index-faq-highlights-hero-section {
  background: linear-gradient(135deg, #1A2B4C 0%, #3a5078 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-faq-highlights-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:hero:okvip,faq,background,abstract]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-index-faq-highlights-hero-section > .page-index-faq-highlights-container {
  position: relative;
  z-index: 1;
}

.page-index-faq-highlights-hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  font-weight: bold;
}

.page-index-faq-highlights-hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-index-faq-highlights-btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-index-faq-highlights-btn-primary {
  background-color: #FFD700; /* Gold */
  color: #1A2B4C; /* Dark blue */
}

.page-index-faq-highlights-btn-primary:hover {
  background-color: #e5c100; /* Darker gold */
  transform: translateY(-2px);
}

.page-index-faq-highlights-btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-index-faq-highlights-btn-secondary:hover {
  background-color: #FFD700;
  color: #1A2B4C;
  transform: translateY(-2px);
}

.page-index-faq-highlights-btn-tertiary {
  background-color: #1A2B4C; /* Dark blue */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-index-faq-highlights-btn-tertiary:hover {
  background-color: #FFD700;
  color: #1A2B4C;
  transform: translateY(-2px);
}

/* FAQ Section */
.page-index-faq-highlights-faq-section {
  padding: 60px 0;
  background-color: #F8F8F8; /* Light background */
}

.page-index-faq-highlights-section-title {
  font-size: 2.5em;
  color: #1A2B4C; /* Dark blue */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-faq-highlights-section-description {
  font-size: 1.1em;
  color: #5f6b82; /* Slightly lighter dark blue */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-index-faq-highlights-accordion {
  margin-top: 30px;
}

.page-index-faq-highlights-accordion-item {
  background-color: #ffffff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.page-index-faq-highlights-accordion-header {
  font-size: 1.4em;
  color: #1A2B4C;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  font-weight: bold;
  background-color: #ffffff;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid #eee;
}

.page-index-faq-highlights-accordion-header::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-index-faq-highlights-accordion-header.active {
  background-color: #e6f0ff; /* Lighter blue on active */
  border-bottom: none;
}

.page-index-faq-highlights-accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-faq-highlights-accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: #fcfdff;
  color: #4A5B7C;
}

.page-index-faq-highlights-accordion-content.active {
  max-height: 1000px; /* Adjust as needed for content length */
  padding: 20px 25px;
}

.page-index-faq-highlights-accordion-content p,
.page-index-faq-highlights-accordion-content ul,
.page-index-faq-highlights-accordion-content ol {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-index-faq-highlights-accordion-content h4 {
  font-size: 1.25em;
  color: #1A2B4C;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-faq-highlights-accordion-content ul,
.page-index-faq-highlights-accordion-content ol {
  padding-left: 25px;
}

.page-index-faq-highlights-accordion-content li {
  margin-bottom: 8px;
}

.page-index-faq-highlights-text-highlight {
  color: #FFD700; /* Gold for highlight */
  font-weight: bold;
}

.page-index-faq-highlights-note {
  background-color: #fffde7; /* Light yellow background */
  border-left: 5px solid #FFD700;
  padding: 15px;
  margin: 20px 0;
  border-radius: 5px;
  color: #666;
}

.page-index-faq-highlights-link-inline {
  color: #FFD700; /* Gold for inline links */
  text-decoration: none;
  font-weight: bold;
}

.page-index-faq-highlights-link-inline:hover {
  text-decoration: underline;
}

.page-index-faq-highlights-image-full-width {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 25px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-index-faq-highlights-cta-box {
  background-color: #1A2B4C; /* Dark blue background */
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  margin-top: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-index-faq-highlights-cta-box p {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for text */
  font-weight: bold;
}

.page-index-faq-highlights-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-index-faq-highlights-full-faq-cta {
  text-align: center;
  padding: 50px 0;
  background-color: #e6f0ff; /* Lighter blue */
  margin-top: 40px;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-index-faq-highlights-hero-title {
    font-size: 2.5em;
  }

  .page-index-faq-highlights-hero-subtitle {
    font-size: 1em;
  }

  .page-index-faq-highlights-btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-index-faq-highlights-section-title {
    font-size: 2em;
  }

  .page-index-faq-highlights-accordion-header {
    font-size: 1.2em;
    padding: 15px 20px;
  }

  .page-index-faq-highlights-accordion-content {
    padding: 15px 20px;
  }

  .page-index-faq-highlights-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .page-index-faq-highlights-cta-group .page-index-faq-highlights-btn {
    width: 80%;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .page-index-faq-highlights-hero-title {
    font-size: 2em;
  }

  .page-index-faq-highlights-btn {
    width: 100%;
    padding: 10px 15px;
  }

  .page-index-faq-highlights-section-title {
    font-size: 1.8em;
  }

  .page-index-faq-highlights-accordion-header {
    font-size: 1.1em;
  }
}