.faq-banner {
    position: relative;
    width: 100%;
    margin: 0 auto;
    height: auto;
    overflow: hidden;
  }
  .faq-des{
    font-family: Roboto;
    font-weight: 400;
    font-size: 15px;
  }
  .svg-size{
    width:24px;
    height: 20px;
  }
 .blue-portion {
    color: #202F64;
 }
  .faq-banner picture img.responsiveImg {
    width: 100%;
    height: auto;
    display: block;
  }
 .header-32-black{
    color:black;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 32px;

 }
 .underline-span-blue{
    color:#202F64 ;
 }
  
  .faq-banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 0 1rem;
  }
  
  .faq-banner-content h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .faq-banner-content p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
  }
  .faq-container {
    width: 100%;
    max-width: 1200px; /* Adjust as needed */
    margin: 0 auto;
    padding: 0 1rem;
  }
  /* Container */
.faq-item {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
    
  }
  
  /* Summary (the question bar) */
  .faq-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background-color:#202F64  ; /* dark-blue background */
    color: #ffffff;
    font-weight: 600;
    padding: 1rem 1rem;
    cursor: pointer;
    border-radius: 5px;
    user-select: none;
    font-family: Montserrat;
    font-size: 20px;
  }
  
  /* Hide default marker */
  .faq-summary::-webkit-details-marker {
    display: none;
  }
  
  /* Chevron icon */
  .faq-icon {
    transition: transform 0.2s ease;
  }
  
  /* Rotate on open */
  .faq-item[open] .faq-icon {
    transform: rotate(180deg);
    
  }
  .faq-item[open] .faq-summary{
    border-radius: 5px !important;
}
  /* Answer panel */
  .faq-content {
    color: #1F2937;   /* dark-gray text */
    padding: 0.75rem 1rem;
    line-height: 1.5;
    border: 1px solid #898B8E;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
  }
  .faq-heading-container{
    max-width: 850px;
    margin: 0 auto; /* centers the entire container */
    text-align: center; /* centers h2 and p text */
    padding: 20px;
  }

  .faq-heading-container h2,
  .faq-heading-container p {
    margin-bottom: 20px;
  }

  .faqSvg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
  }
  
  details[open] .faqSvg {
    transform: rotate(-180deg);
  }
  
  @media (max-width: 768px) {

  .header-32-black {
    font-size: 24px;
  }
 
    .faq-banner-content h2 {
      font-size: 28px;
    }
  
    .faq-banner-content p {
      font-size: 14px;
    }
    .faq-banner-content {
        padding: 0 0rem;
        left: 25%;
        transform: translate(-18%, -50%);
    
    }
    .faq-summary{
    font-family: Montserrat;
font-weight: 500;
font-size: 14px

    }
    .faq-content{
    font-family: Montserrat;
    font-weight: 400;
    font-size: 15px;
    border: none;

    }
    .svg-size{
        width:12px;
        height: 8px;
      }
}