section.faq-banner {
    position: relative;
    width: 100%;
    height: 300px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

section.faq-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

section.faq-banner h1 {
    color: white;
    font-size: 50px;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    z-index: 1;
}


.faq-section {
    text-align: center;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.faq-heading {
    font-size: 30px;
    font-weight: 400;
    font-family: avenir-lt-w01_35-light1475496, sans-serif;
    font-style: normal;
    letter-spacing: normal;
    text-align: center;
    margin-bottom: 20px;
}

.faq-item {
    width: 60%;
    margin: 0 auto;
    text-align: left;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-size: 18px;
    font-family: avenir-lt-w01_35-light1475496, sans-serif;
    font-style: normal;
    letter-spacing: normal;
}

.icon {
    font-size: 20px;
}

.faq-answer {
    display: none;
    padding: 10px 0;
    font-size: 16px;
    font-family: Raleway, sans-serif;
    color: rgb(20, 20, 20) !important;
}

/* Styling for the cancellation policy list */
.cancellation-policy-list {
    list-style-type: disc; /* Adds dots as bullet points */
    padding-left: 20px;    /* Adds space to the left for the bullet */
}

.cancellation-policy-list li {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.cancellation-policy-list li strong {
    font-weight: 600;
}

  
  .faq-item.active .faq-answer {
    display: block; /* Ensure answer is visible when active */
  }
  