/* style/faq.css */
.page-faq {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Default text color for dark background */
    background-color: #0A192F; /* Main background color */
    line-height: 1.6;
}

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

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

.page-faq__hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.page-faq__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-faq__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Accent color */
    color: #0A192F; /* Dark text for accent background */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-faq__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    overflow: hidden;
}

.page-faq__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-faq__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.page-faq__accordion-item {
    background-color: #1a2b42; /* Slightly lighter dark background */
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-faq__accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 25px;
    background-color: #213753; /* Even lighter dark background for header */
    color: #FFD700; /* Accent color for question text */
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-faq__accordion-header:hover {
    background-color: #2c4260;
}

.page-faq__question {
    margin: 0;
    color: #FFD700;
}

.page-faq__accordion-icon {
    font-size: 1.8em;
    font-weight: bold;
    transition: transform 0.3s ease;
    color: #FFD700;
}

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

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

.page-faq__accordion-body p {
    padding-bottom: 20px;
    margin: 0;
}

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

.page-faq__inline-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A192F;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    margin-top: 15px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-faq__cta {
    background-color: #0A192F; /* Main background */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-faq__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFD700; /* Accent color */
    font-weight: bold;
}

.page-faq__cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-faq__cta-button--large {
    padding: 18px 45px;
    font-size: 1.4em;
}

.page-faq__cta-image {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.08;
    max-width: 500px;
    height: auto;
    transform: translateX(20%) translateY(20%);
    z-index: 1;
}

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

.highlight {
    color: #FFD700;
}

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

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

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

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

    .page-faq__accordion-body p {
        font-size: 0.95em;
    }

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

    .page-faq__cta-button--large {
        padding: 15px 35px;
        font-size: 1.2em;
    }

    .page-faq__hero,
    .page-faq__section,
    .page-faq__cta {
        padding: 50px 0;
    }
}

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

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

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

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

    .page-faq__accordion-body p {
        font-size: 0.9em;
    }

    .page-faq__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-faq__cta-image {
        max-width: 300px;
        transform: translateX(30%) translateY(30%);
    }
}