.page-faq {
  background-color: #08160F; /* Custom Background */
  color: #F2FFF6; /* Custom Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-faq__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  box-sizing: border-box;
  text-align: center;
}

.page-faq__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit hero image height */
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

.page-faq__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-faq__hero-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-faq__main-title {
  font-size: clamp(2em, 5vw, 3.5em);
  font-weight: bold;
  color: #F2C14E; /* Custom Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-faq__intro-text {
  font-size: 1.1em;
  color: #A7D9B8; /* Custom Text Secondary */
  margin-bottom: 30px;
}

.page-faq__cta-button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom Button */
  color: #F2FFF6; /* Custom Text Main */
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-faq__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-faq__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  border-bottom: 1px solid #1E3A2A; /* Custom Divider */
}

.page-faq__section:last-of-type {
  border-bottom: none;
}

.page-faq__section-title {
  font-size: clamp(1.8em, 4vw, 2.5em);
  color: #F2C14E; /* Custom Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-faq__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: flex-start;
}

@media (min-width: 769px) {
  .page-faq__content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-faq__content-grid--reverse {
    grid-template-areas: "image text";
  }
  .page-faq__content-grid--reverse .page-faq__text-block { grid-area: text; }
  .page-faq__content-grid--reverse .page-faq__image-container { grid-area: image; }
}

.page-faq__text-block {
  padding: 20px;
  background-color: #11271B; /* Custom Card BG */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Custom Border */
}

.page-faq__image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #2E7A4E; /* Custom Border */
  min-width: 200px;
  min-height: 200px;
}

.page-faq__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.page-faq__sub-title {
  font-size: 1.5em;
  color: #57E38D; /* Custom Glow */
  margin-top: 0;
  margin-bottom: 15px;
}

.page-faq p {
  margin-bottom: 15px;
  color: #F2FFF6; /* Custom Text Main */
}

.page-faq a {
  color: #2AD16F; /* Lighter green for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-faq a:hover {
  color: #57E38D; /* Custom Glow on hover */
  text-decoration: underline;
}

.page-faq__ordered-list,
.page-faq__unordered-list {
  list-style-position: inside;
  margin-left: 0;
  padding-left: 20px;
  margin-bottom: 15px;
}

.page-faq__ordered-list li,
.page-faq__unordered-list li {
  margin-bottom: 8px;
  color: #F2FFF6; /* Custom Text Main */
}

.page-faq__faq-list {
  margin-top: 30px;
}

.page-faq__faq-item {
  background-color: #11271B; /* Custom Card BG */
  border: 1px solid #2E7A4E; /* Custom Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-faq__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  color: #F2C14E; /* Custom Gold */
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  list-style: none; /* Remove default marker for details summary */
}

.page-faq__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-faq__faq-question:hover {
  background-color: rgba(34, 199, 104, 0.1); /* Light hover effect */
}

.page-faq__faq-qtext {
  flex-grow: 1;
}

.page-faq__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Custom Glow */
}

.page-faq__faq-item[open] .page-faq__faq-toggle {
  content: '−'; /* Changed by JS for better control */
}

.page-faq__faq-answer {
  padding: 0 25px 20px;
  color: #A7D9B8; /* Custom Text Secondary */
}

.page-faq__faq-answer p {
  color: #A7D9B8; /* Custom Text Secondary */
}

.page-faq__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-faq__cta-button--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
}

.page-faq__cta-button--secondary {
  background: #11271B; /* Custom Card BG */
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-faq__cta-button--secondary:hover {
  background: #0A4B2C; /* Custom Deep Green */
  color: #F2FFF6;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-faq__hero-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-faq__section {
    padding: 40px 15px;
  }
  .page-faq__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }
  .page-faq__intro-text {
    font-size: 1em;
  }
  .page-faq__cta-button {
    width: 100%;
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-faq__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
  }
  .page-faq__sub-title {
    font-size: 1.3em;
  }
  .page-faq__text-block {
    padding: 15px;
  }
  .page-faq__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-faq__faq-answer {
    padding: 0 20px 15px;
  }
  .page-faq__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-faq__cta-button,
  .page-faq__cta-button--primary,
  .page-faq__cta-button--secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-faq img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-faq__hero-image-wrapper,
  .page-faq__image-container,
  .page-faq__text-block,
  .page-faq__section,
  .page-faq__content-grid,
  .page-faq__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important; /* Ensure no horizontal scroll */
  }
  .page-faq__hero-section {
    padding-top: 10px !important;
  }
  .page-faq__hero-image-wrapper {
    max-height: 300px;
  }
}