/* style/faq.css */
.page-faq {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light gray text for readability on dark background */
    background-color: #0A192F; /* Deep blue primary background */
}

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

.page-faq__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #1a2b42 100%); /* Gradient with primary color */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.page-faq__hero-subtitle {
    font-size: 1.4em;
    color: #F0F0F0;
    margin-bottom: 30px;
    max-width: 800px;
}

.page-faq__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px; /* Adjust size as needed */
    height: auto;
    opacity: 0.2;
    z-index: 0;
}

.page-faq__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 15px;
    z-index: 1;
    position: relative;
}

.page-faq__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Deep blue text */
    border: 2px solid #FFD700;
}

.page-faq__btn--primary:hover {
    background-color: #e6c200;
    color: #000;
}

.page-faq__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 1px solid #FFD700;
    padding: 8px 18px;
    font-size: 0.9em;
}

.page-faq__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
}

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

.page-faq__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    padding-top: 60px;
}

.page-faq__accordion {
    margin-bottom: 80px;
}

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

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

.page-faq__accordion-header:hover, .page-faq__accordion-header[aria-expanded="true"] {
    background-color: #2b3a4d;
}

.page-faq__accordion-title {
    margin: 0;
    color: #FFD700; /* Gold for question titles */
}

.page-faq__accordion-icon {
    font-size: 1.8em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-faq__accordion-header[aria-expanded="true"] .page-faq__accordion-icon {
    transform: rotate(45deg);
}

.page-faq__accordion-content {
    padding: 0 25px;
    background-color: #0A192F; /* Primary background for answer content */
    color: #E0E0E0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

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

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

.page-faq__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    display: block;
}

.page-faq__cta-section {
    background: linear-gradient(90deg, #0A192F 0%, #2b3a4d 100%);
    padding: 80px 0;
    text-align: center;
    margin-top: 50px;
    border-top: 5px solid #FFD700;
    position: relative;
    overflow: hidden;
}

.page-faq__cta-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: auto;
    opacity: 0.1;
    z-index: 0;
}

.page-faq__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-faq__cta-text {
    font-size: 1.3em;
    color: #F0F0F0;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-faq .highlight {
    color: #FFD700;
}

@media (max-width: 768px) {
    .page-faq__hero-title {
        font-size: 2.5em;
    }
    .page-faq__hero-subtitle {
        font-size: 1.2em;
    }
    .page-faq__section-title {
        font-size: 2em;
    }
    .page-faq__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-faq__accordion-content p {
        font-size: 0.9em;
        padding: 15px 0;
    }
    .page-faq__cta-title {
        font-size: 2em;
    }
    .page-faq__cta-text {
        font-size: 1em;
    }
    .page-faq__hero-image {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .page-faq__hero-title {
        font-size: 2em;
    }
    .page-faq__hero-subtitle {
        font-size: 1em;
    }
    .page-faq__btn--large {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-faq__hero-image {
        display: none; /* Hide on very small screens */
    }
}