.faq-section {
    margin: 4rem 0;
    padding: 2rem 0;
}

.faq-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.faq-section h3:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--primary-color, #3498db);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.accordion-item {
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-button {
    width: 100%;
    background-color: #fff;
    border: none;
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    text-align: left;
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-button:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.accordion-button i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.accordion-button.active {
    font-weight: 600;
    color: var(--primary-color, #3498db);
}

.accordion-button.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    background-color: #f9f9f9;
}

.accordion-content p {
    padding: 1.25rem 1.5rem;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .accordion-button {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .accordion-content p {
        padding: 1rem;
    }
}
