.faq-section {
    padding: 60px 0;
    background: #f7f7f7;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.faq-category-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 40px 0 20px;
    text-transform: uppercase;
    color: #333;
}

.accordion .card {
    border: none;
    border-radius: 5px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    background: #fff;
}

.card-header {
    background: #fff;
    padding: 15px 20px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.faq-item-question {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    color: #333;
}

.card-header:hover {
    background: #f0f0f0;
}

.collapse.show .card-header {
    background: #e9e9e9;
}

.card-body {
    background: #fff;
    padding: 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .faq-category-title {
        font-size: 1.3rem;
    }
}