/* style/faq.css */
.page-faq {
    font-family: 'Arial', sans-serif;
    color: #e0e0e0; /* Light text for dark background */
    background-color: #1A202C; /* Main dark background */
}

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

.page-faq__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Gradient with primary color */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-faq__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Accent color for title */
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.page-faq__hero-description {
    font-size: 1.2em;
    color: #f0f0f0;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.page-faq__hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-faq__section {
    padding: 60px 0;
}

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

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

.page-faq__accordion-item {
    background-color: #2a3342; /* Slightly lighter dark background for items */
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #3a475a;
}

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

.page-faq__accordion-header:hover {
    background-color: #4a566b;
    color: #FFF;
}

.page-faq__accordion-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    color: #FFD700;
}

.page-faq__icon {
    width: 28px;
    height: 28px;
    margin-right: 15px;
    filter: invert(80%) sepia(100%) saturate(700%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Adjust icon color to gold */
}

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

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

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

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

.page-faq__accordion-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1.1em;
}

.page-faq__accordion-content p:last-child {
    margin-bottom: 0;
}

.page-faq__accordion-content strong {
    color: #FFD700;
}

.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, transform 0.2s ease;
    margin-top: 15px;
    font-size: 1em;
    text-align: center;
    border: none;
    cursor: pointer;
}

.page-faq__btn--primary {
    background-color: #FFD700; /* Accent color for primary button */
    color: #1A202C; /* Dark text on accent background */
}

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

.page-faq__btn--secondary {
    background-color: #1A202C;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-faq__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
}

.page-faq__cta-section {
    background-color: #3a475a; /* A darker shade for CTA background */
    text-align: center;
    padding: 80px 0;
}

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

.page-faq__cta-description {
    font-size: 1.2em;
    color: #f0f0f0;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.page-faq__promotional-link {
    color: #FFD700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-faq__promotional-link:hover {
    color: #e6c200;
}

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

    .page-faq__hero-description,
    .page-faq__cta-description {
        font-size: 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-content {
        padding: 15px 20px;
    }

    .page-faq__icon {
        width: 24px;
        height: 24px;
        margin-right: 10px;
    }

    .page-faq__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

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

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

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

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

    .page-faq__accordion-header h3 {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .page-faq__icon {
        margin-bottom: 5px;
    }

    .page-faq__accordion-header {
        font-size: 1em;
    }
}