/* style/how-to-start-faq.css */
.page-how-to-start-faq {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark gray for good contrast on light background */
  background-color: #f8f8f8; /* Light background */
}

.page-how-to-start-faq a {
  color: #0047AB; /* Primary blue for links */
  text-decoration: none;
}

.page-how-to-start-faq a:hover {
  text-decoration: underline;
  color: #00287a; /* Darker blue on hover */
}

.page-how-to-start-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-how-to-start-faq__hero-section {
  background: linear-gradient(135deg, #0047AB 0%, #00287a 100%); /* Deep blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-how-to-start-faq__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-how-to-start-faq__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-how-to-start-faq__subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  font-weight: 300;
}

.page-how-to-start-faq__hero-btn {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0047AB; /* Deep blue text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-how-to-start-faq__hero-btn:hover {
  background-color: #e6c200; /* Darker gold on hover */
  color: #00287a;
  transform: translateY(-3px);
  text-decoration: none;
}

.page-how-to-start-faq__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.15;
}

.page-how-to-start-faq__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content Section */
.page-how-to-start-faq__content-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-how-to-start-faq__intro-text {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #333333;
}

/* Accordion Styling */
.page-how-to-start-faq__accordion {
  margin-top: 40px;
}

.page-how-to-start-faq__accordion-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-how-to-start-faq__accordion-title {
  font-size: 1.6em;
  padding: 20px 25px;
  background-color: #0047AB; /* Primary blue for section titles */
  color: #ffffff;
  cursor: pointer;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-how-to-start-faq__accordion-title:hover {
  background-color: #00287a; /* Darker blue on hover */
}

.page-how-to-start-faq__accordion-title::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-how-to-start-faq__accordion-title.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-how-to-start-faq__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-how-to-start-faq__accordion-content.open {
  max-height: 1000px; /* Adjust as needed for content height */
  padding: 25px;
}

.page-how-to-start-faq__qa-item {
  margin-bottom: 30px;
  border-bottom: 1px dashed #e0e0e0;
  padding-bottom: 20px;
}

.page-how-to-start-faq__qa-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-how-to-start-faq__question {
  font-size: 1.3em;
  color: #0047AB; /* Primary blue for questions */
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-how-to-start-faq__answer {
  font-size: 1.05em;
  color: #555555; /* Slightly lighter gray for answers */
  margin-bottom: 10px;
}

.page-how-to-start-faq__answer ul,
.page-how-to-start-faq__answer ol {
  margin-left: 25px;
  margin-bottom: 15px;
  color: #555555;
}

.page-how-to-start-faq__answer li {
  margin-bottom: 8px;
}

.page-how-to-start-faq__inline-btn {
  display: inline-block;
  background-color: #FFD700; /* Gold for inline buttons */
  color: #0047AB; /* Deep blue text */
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 0.95em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 10px;
}

.page-how-to-start-faq__inline-btn:hover {
  background-color: #e6c200;
  color: #00287a;
  text-decoration: none;
}

.page-how-to-start-faq__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-how-to-start-faq__image--small {
  max-width: 600px;
}

.page-how-to-start-faq__image--large {
  max-width: 800px;
}

/* Call to Action Section */
.page-how-to-start-faq__cta-section {
  background-color: #0047AB; /* Primary blue background */
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 8px;
  margin-top: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-how-to-start-faq__cta-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for CTA title */
  margin-bottom: 20px;
}

.page-how-to-start-faq__cta-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-how-to-start-faq__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-how-to-start-faq__cta-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-how-to-start-faq__cta-btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0047AB; /* Deep blue text */
}

.page-how-to-start-faq__cta-btn--primary:hover {
  background-color: #e6c200;
  color: #00287a;
  transform: translateY(-3px);
  text-decoration: none;
}

.page-how-to-start-faq__cta-btn--secondary {
  background-color: #ffffff; /* White button */
  color: #0047AB; /* Deep blue text */
  border: 2px solid #FFD700; /* Gold border */
}

.page-how-to-start-faq__cta-btn--secondary:hover {
  background-color: #f0f0f0;
  color: #00287a;
  transform: translateY(-3px);
  text-decoration: none;
  border-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-how-to-start-faq__main-title {
    font-size: 3em;
  }
  .page-how-to-start-faq__subtitle {
    font-size: 1.3em;
  }
  .page-how-to-start-faq__accordion-title {
    font-size: 1.4em;
  }
  .page-how-to-start-faq__question {
    font-size: 1.2em;
  }
  .page-how-to-start-faq__cta-title {
    font-size: 2em;
  }
  .page-how-to-start-faq__cta-text {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-how-to-start-faq__hero-section {
    padding: 60px 0;
  }
  .page-how-to-start-faq__main-title {
    font-size: 2.5em;
  }
  .page-how-to-start-faq__subtitle {
    font-size: 1.1em;
  }
  .page-how-to-start-faq__hero-btn {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-how-to-start-faq__content-section {
    padding: 40px 0;
  }
  .page-how-to-start-faq__accordion-title {
    font-size: 1.2em;
    padding: 15px 20px;
  }
  .page-how-to-start-faq__question {
    font-size: 1.1em;
  }
  .page-how-to-start-faq__answer {
    font-size: 1em;
  }
  .page-how-to-start-faq__cta-section {
    padding: 40px 15px;
  }
  .page-how-to-start-faq__cta-title {
    font-size: 1.8em;
  }
  .page-how-to-start-faq__cta-text {
    font-size: 1em;
  }
  .page-how-to-start-faq__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-how-to-start-faq__cta-btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .page-how-to-start-faq__main-title {
    font-size: 2em;
  }
  .page-how-to-start-faq__subtitle {
    font-size: 1em;
  }
  .page-how-to-start-faq__hero-btn {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-how-to-start-faq__accordion-title {
    font-size: 1.1em;
    padding: 12px 15px;
  }
  .page-how-to-start-faq__accordion-content.open {
    padding: 15px;
  }
  .page-how-to-start-faq__question {
    font-size: 1em;
  }
  .page-how-to-start-faq__intro-text {
    font-size: 0.95em;
  }
  .page-how-to-start-faq__cta-title {
    font-size: 1.5em;
  }
}