        /* Header Section - "Frequently Asked Questions" */
/* HEADER SECTION */
.header-section {
    position: relative;
    width: 100%;
    min-height: 300px;
    background-color: #a0aec0;
    background-image: url('Images/faqsBanner.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding: 4rem 5%;
    box-sizing: border-box;
}

.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(41, 128, 185, 0.7), rgba(52, 152, 219, 0.7));
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    text-align: left;
    padding: 0 1rem 0 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    word-break: break-word;
    white-space: normal;
}

/* FAQ SECTION */
.faq-section {
    background-color: #f3f4f6;
    padding: 4rem 1rem;
    text-align: center;
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #34495e;
    cursor: pointer;
    background-color: #fcfcfc;
    transition: background-color 0.3s ease;
    text-align: left;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question i {
    color: #032f4d;
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: white;
    color: #555;
    text-align: left;
}

.faq-answer.open {
    max-height: 500px;
    padding: 1rem 1.5rem 1.5rem;
}

.faq-answer p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-answer ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.faq-answer ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
    .header-content {
        font-size: 2.5rem;
    }

    .faq-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .header-section {
        padding: 3rem 2rem;
        min-height: 250px;
    }

    .header-content {
        font-size: 2.2rem;
        text-align: center;
        padding: 0;
    }

    .faq-question {
        font-size: 1.1rem;
    }

    .faq-answer p,
    .faq-answer ul li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header-section {
        padding: 2rem 1rem;
        min-height: 200px;
    }

    .header-content {
        font-size: 1.8rem;
    }

    .faq-section h2 {
        font-size: 1.8rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.2rem;
    }

    .faq-answer.open {
        padding: 0.8rem 1.2rem 1.2rem;
    }
}
