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

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

.page-faq__hero-section {
    position: relative;
    background-color: #0A1931;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}

.page-faq__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-faq__hero-section .page-faq__container {
    position: relative;
    z-index: 1;
}

.page-faq__main-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faq__hero-subtitle {
    font-size: 1.4em;
    max-width: 800px;
    margin: 0 auto;
    color: #E0E0E0;
}

.page-faq__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.page-faq__accordion-section {
    padding: 60px 0;
    background-color: #0A1931;
}

.page-faq__accordion {
    margin-top: 30px;
}

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

.page-faq__accordion-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #1A2E44;
    color: #FFFFFF;
    font-size: 1.3em;
    font-weight: bold;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-faq__accordion-question:hover {
    background-color: #2A3E54;
}

.page-faq__accordion-item.active .page-faq__accordion-question {
    background-color: #FFD700;
    color: #0A1931;
}

.page-faq__accordion-icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.page-faq__accordion-icon::before,
.page-faq__accordion-icon::after {
    content: '';
    position: absolute;
    background-color: #FFD700;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.page-faq__accordion-question .page-faq__accordion-icon::before {
    width: 2px;
    height: 16px;
}

.page-faq__accordion-question .page-faq__accordion-icon::after {
    width: 16px;
    height: 2px;
}

.page-faq__accordion-item.active .page-faq__accordion-question .page-faq__accordion-icon::before {
    transform: translate(-50%, -50%) rotate(90deg);
    background-color: #0A1931;
}

.page-faq__accordion-item.active .page-faq__accordion-question .page-faq__accordion-icon::after {
    width: 0;
    background-color: #0A1931;
}

.page-faq__accordion-answer {
    padding: 0 25px;
    background-color: #1A2E44;
    color: #E0E0E0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-faq__accordion-item.active .page-faq__accordion-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 20px 25px;
}

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

.page-faq__inline-icon {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-left: 10px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-faq__cta-section {
    background-color: #0A1931;
    padding: 80px 0;
    text-align: center;
}

.page-faq__cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    background-color: #1A2E44;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-faq__cta-image {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.7));
}

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

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

.page-faq__cta-description {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 30px;
}

.page-faq__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A1931;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-faq__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-faq__main-title {
        font-size: 2.5em;
    }
    .page-faq__hero-subtitle {
        font-size: 1.1em;
    }
    .page-faq__section-title {
        font-size: 2em;
    }
    .page-faq__accordion-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-faq__accordion-item.active .page-faq__accordion-answer {
        padding: 15px 20px;
    }
    .page-faq__cta-content {
        padding: 30px;
    }
    .page-faq__cta-title {
        font-size: 1.8em;
    }
    .page-faq__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-faq__hero-section {
        padding: 60px 0;
    }
    .page-faq__main-title {
        font-size: 2em;
    }
    .page-faq__hero-subtitle {
        font-size: 0.9em;
    }
    .page-faq__section-title {
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 30px;
    }
    .page-faq__accordion-question {
        font-size: 1em;
        padding: 12px 15px;
    }
    .page-faq__accordion-icon {
        width: 20px;
        height: 20px;
    }
    .page-faq__accordion-question .page-faq__accordion-icon::before {
        height: 14px;
    }
    .page-faq__accordion-question .page-faq__accordion-icon::after {
        width: 14px;
    }
    .page-faq__cta-content {
        padding: 20px;
    }
    .page-faq__cta-title {
        font-size: 1.5em;
    }
    .page-faq__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}