/* style/faq.css */

/* Base Styles for .page-faq */
.page-faq {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    line-height: 1.6;
    background-color: #0A2239; /* Main dark blue background */
}

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

.page-faq__highlight {
    color: #FFD700; /* Accent gold color for highlights */
}

/* Hero Section */
.page-faq__hero-section {
    background: linear-gradient(135deg, #0A2239 0%, #1A3A52 100%); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    border-bottom: 2px solid #FFD700;
}

.page-faq__hero-title {
    font-size: 3em;
    color: #FFFFFF; /* White for main titles */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-faq__hero-description {
    font-size: 1.2em;
    color: #B0B0B0; /* Lighter grey for descriptions */
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-faq__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Buttons */
.page-faq__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-faq__btn--primary {
    background-color: #FFD700; /* Gold accent for primary actions */
    color: #0A2239; /* Dark blue text on gold */
}

.page-faq__btn--primary:hover {
    background-color: #E0B800; /* 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;
    color: #0A2239;
    transform: translateY(-2px);
}

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

.page-faq__btn--large {
    padding: 18px 35px;
    font-size: 1.3em;
}

/* Content Section */
.page-faq__content-section {
    padding: 60px 0;
    background-color: #0A2239;
}

.page-faq__section-title {
    font-size: 2.5em;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-faq__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* FAQ List (Accordion) */
.page-faq__faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-faq__faq-item {
    background-color: #1A3A52; /* Slightly lighter dark blue for items */
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #2A506C;
}

.page-faq__faq-question {
    display: block;
    padding: 20px 25px;
    background-color: #1A3A52;
    color: #FFD700; /* Gold for questions */
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-faq__faq-question:hover {
    background-color: #2A506C;
}

.page-faq__faq-question::marker, .page-faq__faq-question::-webkit-details-marker {
    display: none;
}

.page-faq__faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-faq__faq-item[open] .page-faq__faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-faq__faq-answer {
    padding: 20px 25px 25px;
    background-color: #0A2239; /* Darker background for answer content */
    color: #E0E0E0;
    font-size: 1em;
    line-height: 1.8;
    border-top: 1px solid #2A506C;
}

.page-faq__faq-answer p {
    margin-bottom: 15px;
}

.page-faq__faq-answer strong {
    color: #FFD700;
}

.page-faq__faq-answer ol, .page-faq__faq-answer ul {
    margin: 15px 0 15px 25px;
    list-style-type: disc;
}

.page-faq__faq-answer ol {
    list-style-type: decimal;
}

.page-faq__faq-answer li {
    margin-bottom: 8px;
}

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

/* Call to Action Section */
.page-faq__cta-section {
    background: linear-gradient(45deg, #0A2239 0%, #1A3A52 100%);
    padding: 80px 0;
    text-align: center;
    border-top: 2px solid #FFD700;
    margin-top: 50px;
}

.page-faq__cta-title {
    font-size: 2.8em;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.page-faq__cta-description {
    font-size: 1.1em;
    color: #B0B0B0;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-faq__hero-title {
        font-size: 2.5em;
    }

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

    .page-faq__hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .page-faq__btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }

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

    .page-faq__faq-question {
        font-size: 1.1em;
        padding: 18px 20px;
    }

    .page-faq__faq-question::after {
        right: 20px;
    }

    .page-faq__faq-answer {
        padding: 15px 20px 20px;
    }

    .page-faq__cta-title {
        font-size: 2.2em;
    }
}

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

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

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

    .page-faq__faq-question {
        font-size: 1em;
        padding: 15px;
    }

    .page-faq__faq-question::after {
        right: 15px;
        font-size: 1.2em;
    }

    .page-faq__faq-answer {
        padding: 10px 15px 15px;
    }

    .page-faq__cta-title {
        font-size: 1.8em;
    }
    .page-faq__btn--large {
        width: 90%;
        font-size: 1.1em;
        padding: 15px 25px;
    }
}