/* style/faq.css */
.page-faq {
    font-family: Arial, sans-serif;
    color: #f8f8f8; /* Light gray for general text for better contrast on dark backgrounds */
    background-color: #1A2B4C; /* Main dark blue background */
}

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

.page-faq__hero {
    background: linear-gradient(135deg, #1A2B4C, #2E4B80); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-faq__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold accent for title */
    font-weight: bold;
}

.page-faq__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

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

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

.page-faq__btn--primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-2px);
}

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

.page-faq__btn--secondary:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #1A2B4C; /* Dark blue text on gold */
    transform: translateY(-2px);
}

.page-faq__accordion-section {
    padding: 60px 0;
    background-color: #1A2B4C; /* Dark blue background */
}

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

.page-faq__accordion {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-faq__accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-faq__accordion-item:last-child {
    border-bottom: none;
}

.page-faq__accordion-header {
    background-color: #2E4B80; /* Slightly lighter blue for headers */
    color: #FFFFFF; /* White text for headers */
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-faq__accordion-header h3 {
    margin: 0;
    color: #FFFFFF; /* Ensure h3 text is white */
    font-size: 1.2em;
}

.page-faq__accordion-header:hover {
    background-color: #3C5F99; /* Even lighter blue on hover */
}

.page-faq__icon {
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-faq__accordion-header.active .page-faq__icon {
    transform: rotate(45deg);
}

.page-faq__accordion-content {
    background-color: #1A2B4C; /* Dark blue for content */
    color: #f8f8f8; /* Light gray text for content */
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-faq__accordion-content p {
    padding-bottom: 20px;
    line-height: 1.6;
}

.page-faq__accordion-content a {
    color: #FFD700; /* Gold links within content */
    text-decoration: underline;
}

.page-faq__accordion-content a:hover {
    color: #e6c200;
}

.page-faq__cta-section {
    background-color: #2E4B80; /* Darker blue for CTA section */
    padding: 80px 0;
    text-align: center;
}

.page-faq__cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-faq__cta-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.page-faq__cta-text {
    max-width: 700px;
    color: #FFFFFF;
}

.page-faq__cta-text .page-faq__section-title {
    color: #FFD700;
    margin-bottom: 20px;
}

.page-faq__cta-text p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-faq__cta-content {
        flex-direction: row;
        text-align: left;
    }

    .page-faq__cta-image {
        flex: 0 0 40%;
    }

    .page-faq__cta-text {
        flex: 1;
        padding-left: 40px;
    }
    
    .page-faq__hero-title {
        font-size: 4em;
    }

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

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

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

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

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

    .page-faq__accordion-header h3 {
        font-size: 1.1em;
    }

    .page-faq__accordion-content {
        padding: 0 20px;
    }

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