/* style/faq.css */
.page-faq {
    font-family: 'Arial', sans-serif;
    color: #E5E7EB; /* Light gray for general text on 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%); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero title */
    position: relative;
    overflow: hidden;
}

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

.page-faq-hero-description {
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #E5E7EB;
}

.page-faq-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-faq-btn-primary {
    background-color: #FFD700; /* Gold for primary button */
    color: #1A202C;
    margin: 10px;
}

.page-faq-btn-primary:hover {
    background-color: #e5c100;
    transform: translateY(-3px);
}

.page-faq-btn-secondary {
    background-color: #2D3748; /* Darker blue for secondary button */
    color: #FFD700;
    border: 2px solid #FFD700;
    margin: 10px;
}

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

.page-faq-content {
    padding: 60px 0;
    background-color: #1A202C;
}

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

.page-faq-accordion {
    margin-top: 30px;
}

.page-faq-item {
    background-color: #2D3748; /* Slightly lighter dark blue for accordion items */
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-faq-question {
    font-size: 1.4em;
    color: #FFD700; /* Gold for questions */
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: background-color 0.3s ease;
}

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

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

.page-faq-question:hover {
    background-color: #3a475a;
}

.page-faq-answer {
    padding: 0 30px 20px 30px;
    font-size: 1.1em;
    line-height: 1.7;
    color: #E5E7EB; /* Light gray for answers */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-faq-answer.active {
    max-height: 1000px; /* Adjust as needed */
    padding: 0 30px 30px 30px;
}

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

.page-faq-answer ul,
.page-faq-answer ol {
    margin-left: 25px;
    margin-bottom: 15px;
}

.page-faq-answer li {
    margin-bottom: 8px;
}

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

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

.page-faq-call-to-action {
    background-color: #2D3748; /* Darker blue for CTA */
    text-align: center;
    padding: 60px 20px;
    margin-top: 60px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.page-faq-cta-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for CTA title */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-faq-cta-description {
    font-size: 1.3em;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #E5E7EB;
}

.page-faq-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.page-faq-image-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.page-faq-content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments */
@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 {
        font-size: 2em;
    }

    .page-faq-question {
        font-size: 1.2em;
        padding: 15px 20px;
    }

    .page-faq-answer {
        font-size: 1em;
        padding: 0 20px 20px 20px;
    }

    .page-faq-answer.active {
        padding: 0 20px 20px 20px;
    }

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

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

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

    .page-faq-hero-description {
        font-size: 0.9em;
    }

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

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

    .page-faq-answer {
        padding: 0 15px 15px 15px;
    }

    .page-faq-answer.active {
        padding: 0 15px 15px 15px;
    }

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

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