/* style/faq.css */
.page-faq {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

.page-faq__hero-section {
    background: linear-gradient(135deg, #0A2463, #3a5c9f);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-faq__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,blue_gold,pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-faq__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E3B505;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-faq__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.page-faq__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.page-faq__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.page-faq__btn--primary {
    background-color: #E3B505;
    color: #0A2463;
    border: 2px solid #E3B505;
}

.page-faq__btn--primary:hover {
    background-color: #f0c94b;
    color: #0A2463;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-faq__btn--secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.page-faq__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-faq__faq-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

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

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

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

.page-faq__accordion-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-faq__accordion-header {
    width: 100%;
    padding: 20px 25px;
    background-color: #0A2463;
    color: #fff;
    border: none;
    text-align: left;
    font-size: 1.25em;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    position: relative;
}

.page-faq__accordion-header:hover {
    background-color: #1a3a7f;
}

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

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

.page-faq__accordion-content {
    padding: 0 25px;
    background-color: #fefefe;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-faq__accordion-content p {
    padding: 15px 0;
    margin: 0;
    color: #555;
    font-size: 1.1em;
}

.page-faq__accordion-content a {
    color: #E3B505;
    text-decoration: none;
    font-weight: bold;
}

.page-faq__accordion-content a:hover {
    text-decoration: underline;
}

.page-faq__cta-section {
    background-color: #0A2463;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

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

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

.page-faq__cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-faq__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

    .page-faq__subtitle {
        font-size: 1.1em;
    }

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

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

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

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

    .page-faq__accordion-content p {
        font-size: 1em;
        padding: 10px 0;
    }

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

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

    .page-faq__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

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

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

    .page-faq__subtitle {
        font-size: 0.9em;
    }

    .page-faq__btn {
        padding: 12px 20px;
        font-size: 1em;
        width: 90%;
    }

    .page-faq__faq-section {
        padding: 40px 0;
    }

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

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

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

    .page-faq__cta-section {
        padding: 40px 0;
    }

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

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