.faq-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.faq-section {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.faq-section h2 {
    color: #2c5282;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-answer {
    color: #4a5568;
    line-height: 1.6;
}

.title {
    text-align: center;
    margin: 3rem 0;
    color: #2d3748;
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.title span {
    background: linear-gradient(120deg, #f6e05e 0%, #ecc94b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 1.5rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .title {
        font-size: 2rem;
        margin: 2rem 0;
    }
}