﻿/* Hero Section */
.faq-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #0a2540 100%);
    padding: 100px 20px 60px;
    text-align: center;
    color: white;
    margin-top: 15px
}

.faq-hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.faq-hero-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto;
}

/* FAQ Section */
.faq-section {
    padding: 40px 20px 60px;
    background: #f8fafc;
}

/* GRID FOR 2 COLUMNS */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* FAQ Column */
.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Desktop - 2 columns */
@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* FAQ Item */
.faq-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #0066cc;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

    .faq-item:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 500;
    color: #0066cc;
    transition: background 0.2s ease;
    gap: 12px;
}

    .faq-question:hover {
        background: #f8fafc;
    }

    .faq-question span {
        flex: 1;
        line-height: 1.5;
    }

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    stroke: #64748b;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    stroke: #0066cc;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    border-top: 0 solid #e2e8f0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    border-top-width: 1px;
}

.faq-answer p {
    padding: 16px 18px;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

/* CTA Section */
.faq-cta {
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    padding: 50px 20px;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-text {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 24px;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: white;
    color: #0066cc;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }
