section.custom-faq-section {
    background-color: #c6d8d4; /* Light Background */
    padding: 80px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #00453d; /* Dark Green Text Main */
  }

  .faq-container {
    max-width: 1600px; /* Constrained width for better readability */
    margin: 0 auto;
  }

  /* Heading Design */
  .faq-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #00453d; /* Dark Green */
    letter-spacing: -0.5px;
    position: relative;
  }

  /* Decorative underline */
  .faq-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 6px;
    background-color: #00fdeb; /* Cyan Accent */
    margin: 15px auto 0;
    border-radius: 3px;
  }

  /* FAQ Item Wrapper - Card Style */
  .faq-item {
    background-color: #ffffff; /* White cards for contrast against light grey bg */
    border: 1px solid rgba(0, 69, 61, 0.05); /* Very subtle green border */
    margin-bottom: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 69, 61, 0.05); /* Soft shadow using theme color */
    overflow: hidden; /* Ensures rounded corners clip children */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 69, 61, 0.1);
  }

  /* The Clickable Question */
  button.faq-question {
    background-color: #ffffff;
    color: #00453d;
    cursor: pointer;
    padding: 24px 30px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.15rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
  }

  /* Hover Effect for Question */
  button.faq-question:hover {
    background-color: #f4fcfb; /* Very light tint of the green/cyan */
    color: #008f83; /* Lighter green for interaction feedback */
  }

  /* Active State (When open) - bold colorful look */
  button.faq-question.active {
    background-color: #00453d; /* Main Dark Green Background */
    color: #00fdeb; /* Cyan Text */
  }

  /* The Plus/Minus Icon */
  .faq-icon {
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 400;
    transition: transform 0.3s ease;
    color: #00453d; /* Dark Green normally */
  }

  /* Icon color when active */
  button.faq-question.active .faq-icon {
    transform: rotate(45deg);
    color: #00fdeb; /* Cyan when active */
  }

  /* The Answer (Hidden by default) */
  .faq-answer {
    background-color: #ffffff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .faq-answer p {
    padding: 0 30px 30px 30px;
    margin: 0;
    line-height: 1.8;
    color: #2c5e59; /* Slightly softer green for reading text */
    font-size: 1rem;
    border-top: 1px solid transparent; /* Placeholder */
  }

  /* When active, add a separator line via the paragraph top styling */
  button.faq-question.active + .faq-answer p {
    padding-top: 20px;
  }

  /* Mobile responsiveness */
  @media (max-width: 768px) {
    .faq-heading {
      font-size: 2rem;
    }
    button.faq-question {
      padding: 20px;
      font-size: 1rem;
    }
    .faq-answer p {
      padding: 0 20px 20px 20px;
    }
  }