.section-header {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
  }
  .section-header h1 {
      font-family: 'Lexend', sans-serif;
      font-weight: 800;
      text-transform: uppercase;
      font-size: 2.7rem;
      color: #000000; /* Deep blue for strong impact */
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
      margin-bottom: 1rem; /* Space for the line */
      text-align: center;
      margin-top: 67px;
      position: relative;
  }
  .section-header h1::after {
      content: '';
      display: block;
      width: 140px;
      height: 6px;
      background: linear-gradient(90deg, #940bfc, #02fddc);
      margin: 0 auto;
      border-radius: 2px;
      margin-top: 0.5rem;
  }

  @media (max-width: 480px) {
    /* General Adjustments */  
    .section-header h1 {
      font-size: 2rem;
      margin-top: 40px;
    }
    .section-header h1::after {
      width: 120px;
      height: 4px;
      margin-bottom: 40px;
     }
  
  
  }

  /* General Styling */
body {
    
    margin: 0;
    padding: 0;
    background-image: url('../img/background.jpg'); /* Path to your background image */
    background-size: cover; /* Ensure the image covers the full screen */
    background-repeat: no-repeat; /* Prevent tiling */
    background-position: center center; /* Center the image */
    background-attachment: fixed; /* Keep the background fixed on scroll */
}

/* FAQ Section */
#faq {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-container {
    display: flex;
    flex-direction: column;
}

/* FAQ Items */
.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

/* FAQ Question with + Sign */
.faq-question {
    font-size: 20px;
    font-weight: 600;
    color: #007bff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
    font-family: 'Manrope', sans-serif;
}

/* Plus Sign Before Each Question */
.faq-question::after {
    content: "+";  /* Default is Plus */
    font-size: 22px;
    font-weight: bold;
    color: #007bff;
    margin-left: 10px;
    transition: transform 0.3s ease-in-out;
}

/* Change to Minus When Active */
.faq-item.active .faq-question::after {
    content: "-"; /* When expanded, change to minus */
    color: #ff0000; /* Change color to red */
}


.faq-answer {
    font-size: 20px;
    color: #050505;
    display: none; /* Hidden by default */
    padding-top: 10px;
    transition: max-height 0.3s ease-in-out;
    font-family: 'Quicksand', sans-serif;
}

/* Active FAQ */
.faq-item.active .faq-answer {
    display: block;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    #faq {
        width: 90%;
        padding: 15px;
    }
    

    .faq-question {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }
}
