/* ==========================================
   FAQ Page Styles
   Brand Consistent (Gold + Sea Blue + Dark Green)
   ========================================== */

:root {
    --dark-green: #1a3a52;
    --sea-blue: #2c8b8b;
    --golden: #c9a961;
    --golden-hover: #d4b76f;
    --light-bg: #f7f9fc;
    --text-dark: #2d3748;
}

/* FAQ Section */
.faq-section {
    background: var(--light-bg);
    padding: 4rem 2rem;
}

/* Container */
.faq-section .container {
    max-width: 900px;
    margin: 0 auto;
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h1 {
    font-size: 2.4rem;
    color: var(--dark-green);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

/* FAQ Item */
.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--golden);
    box-shadow: 0 10px 30px rgba(26,58,82,0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(26,58,82,0.14);
}

/* Question */
.faq-item h2 {
    font-size: 1.25rem;
    color: var(--dark-green);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

/* Accent on hover */
.faq-item:hover h2 {
    color: var(--sea-blue);
}

/* Answer text */
.faq-item p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.65;
    margin-bottom: 0.75rem;
}

/* Lists inside answers */
.faq-item ul {
    margin: 0.5rem 0 0.75rem 1.2rem;
    padding-left: 0.5rem;
}

.faq-item ul li {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0.35rem;
    position: relative;
}

/* Custom bullet */
.faq-item ul li::marker {
    color: var(--golden);
}

/* Last spacing cleanup */
.faq-item p:last-child,
.faq-item ul:last-child {
    margin-bottom: 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 1.25rem;
    }

    .section-header h1 {
        font-size: 2rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faq-item h2 {
        font-size: 1.15rem;
    }
}
