/* style/faq.css */
.page-faq {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #F8F8F8; /* Light gray text for contrast on dark background */
    background-color: #0A192F; /* Main dark blue background */
}

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

.page-faq__hero {
    position: relative;
    background: linear-gradient(135deg, #0A192F, #1A3A5F);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.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 .page-faq__container {
    position: relative;
    z-index: 1;
}

.page-faq__title {
    font-size: 3.5em;
    color: #FFD700; /* Gold accent for title */
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faq__subtitle {
    font-size: 1.5em;
    color: #E0E0E0;
    margin-bottom: 40px;
}

.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;
    cursor: pointer;
    border: none;
}

.page-faq__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-faq__btn--primary:hover {
    background-color: #E6C200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-faq__btn--secondary {
    background-color: #1A3A5F;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(26, 58, 95, 0.4);
}

.page-faq__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-faq__intro {
    padding: 60px 0;
    background-color: #0A192F;
    text-align: center;
}

.page-faq__section-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 30px;
    font-weight: 600;
}

.page-faq__text {
    font-size: 1.1em;
    color: #B0B0B0;
    max-width: 800px;
    margin: 0 auto;
}

.page-faq__accordion-section {
    padding: 60px 0;
    background-color: #122A47; /* Slightly lighter dark blue for contrast */
}

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

.page-faq__accordion-item {
    background-color: #0A192F;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-faq__accordion-question {
    font-size: 1.3em;
    color: #FFD700;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    position: relative;
    transition: background-color 0.3s ease;
}

.page-faq__accordion-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-faq__accordion-question.active {
    background-color: #1A3A5F;
}

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

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

.page-faq__accordion-answer.open {
    max-height: 500px; /* Adjust based on expected content length */
    padding: 20px 25px;
}

.page-faq__accordion-answer p {
    margin: 0;
    padding-bottom: 10px;
}

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

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

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

.page-faq__cta-bottom {
    background: linear-gradient(135deg, #1A3A5F, #0A192F);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-faq__cta-bottom .page-faq__container {
    position: relative;
    z-index: 1;
}

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

.page-faq__cta-text {
    font-size: 1.2em;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

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

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

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

    .page-faq__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

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

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

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

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

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

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

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

    .page-faq__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-faq__hero {
        padding: 60px 0;
    }
    .page-faq__intro, .page-faq__accordion-section, .page-faq__cta-bottom {
        padding: 40px 0;
    }
}