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

.page-faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-faq-hero {
    background: linear-gradient(135deg, #1A2E47 0%, #3a5c88 100%);
    padding: 80px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero title */
}

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

.page-faq-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e5d1b8;
}

.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;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-faq-btn-primary {
    background-color: #FFD700;
    color: #1A2E47;
    border: 2px solid #FFD700;
}

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

.page-faq-btn-secondary {
    background-color: #1A2E47;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-faq-btn-secondary:hover {
    background-color: #0d1a29;
    transform: translateY(-2px);
}

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

.page-faq-accordion {
    border-radius: 10px;
    overflow: hidden;
}

.page-faq-item {
    margin-bottom: 15px;
    background-color: #2b415e; /* Slightly lighter dark blue for items */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-faq-item:last-child {
    margin-bottom: 0;
}

.page-faq-question {
    padding: 20px 25px;
    margin: 0;
    font-size: 1.25em;
    color: #FFD700; /* Gold for questions */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2b415e;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    transition: background-color 0.3s ease;
}

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

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

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

.page-faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #3a5c88; /* Even lighter dark blue for answers */
    color: #e5d1b8;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

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

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

.page-faq-answer p:last-child {
    margin-bottom: 0;
}

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

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

.page-faq-image-inline {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-faq-cta-bottom {
    background-color: #FFD700; /* Gold background for bottom CTA */
    padding: 60px 0;
    text-align: center;
    color: #1A2E47;
}

.page-faq-cta-title {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #1A2E47;
    font-weight: bold;
}

.page-faq-cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #3a5c88;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-faq-title {
        font-size: 2.5em;
    }
    .page-faq-subtitle {
        font-size: 1.1em;
    }
    .page-faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-faq-answer {
        padding: 15px 20px;
    }
    .page-faq-cta-title {
        font-size: 2em;
    }
    .page-faq-cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-faq-title {
        font-size: 2em;
    }
    .page-faq-subtitle {
        font-size: 1em;
    }
    .page-faq-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-faq-question {
        font-size: 1em;
        padding: 12px 15px;
    }
    .page-faq-answer {
        padding: 12px 15px;
    }
    .page-faq-cta-title {
        font-size: 1.8em;
    }
    .page-faq-cta-description {
        font-size: 0.9em;
    }
}