/* style/faq.css */
.page-faq {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* White text for overall readability on dark background */
    background-color: #0A2342; /* Main dark blue background */
}

.page-faq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-faq__hero-section {
    background: linear-gradient(135deg, #0A2342, #1a3a60);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-faq__hero-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-faq__hero-subtitle {
    font-size: 1.2em;
    color: #E0E0E0;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-faq__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A2342; /* Dark blue text on gold */
    border: 2px solid #FFD700;
}

.page-faq__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-faq__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
    margin-top: 20px;
}

.page-faq__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
}

.page-faq__content-section {
    padding: 60px 0;
    background-color: #0A2342;
}

.page-faq__section-title {
    font-size: 2.2em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-faq__accordion-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.page-faq__accordion-item {
    background-color: #1a3a60; /* Slightly lighter dark blue for accordion items */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-faq__accordion-header {
    background-color: #1a3a60;
    color: #FFD700; /* Gold for accordion headers */
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-faq__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-faq__accordion-header.active {
    background-color: #0A2342;
    color: #FFFFFF;
}

.page-faq__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-faq__accordion-body {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #0A2342; /* Main dark blue for body */
    color: #E0E0E0;
}

.page-faq__accordion-body.show {
    max-height: 1000px; /* Adjust based on expected content length */
    padding: 20px 25px;
}

.page-faq__accordion-body p {
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 1.05em;
}

.page-faq__accordion-body ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.page-faq__accordion-body ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.page-faq__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-faq__image--inline {
    margin-left: auto;
    margin-right: auto;
}

.page-faq__cta-bottom {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #1a3a60;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-faq__cta-bottom p {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 25px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .page-faq__hero-title {
        font-size: 2em;
    }

    .page-faq__hero-subtitle {
        font-size: 1em;
    }

    .page-faq__btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-faq__section-title {
        font-size: 1.8em;
    }

    .page-faq__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-faq__accordion-body {
        padding: 15px 20px;
    }

    .page-faq__cta-bottom p {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-faq__hero-section {
        padding: 50px 0;
    }

    .page-faq__hero-title {
        font-size: 1.8em;
    }

    .page-faq__hero-subtitle {
        font-size: 0.9em;
    }

    .page-faq__btn {
        width: 100%;
        box-sizing: border-box;
    }

    .page-faq__section-title {
        font-size: 1.6em;
    }

    .page-faq__accordion-header {
        font-size: 1em;
        padding: 12px 15px;
    }

    .page-faq__accordion-body {
        padding: 12px 15px;
    }

    .page-faq__cta-bottom {
        padding: 20px;
    }

    .page-faq__cta-bottom p {
        font-size: 1em;
    }
}