.faq-section {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.faq-title {
    color: var(--brand-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--brand-color);
    border-radius: 20px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 0.5rem 1rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--brand-color);
    font-size: 1.2rem;
}

.faq-icon-wrapper {
    background-color: #EE3932;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    fill: white;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .faq-section {
        padding: 15px;
    }

    .faq-title {
        font-size: 1.5rem;
    }

    .faq-question {
        padding: 15px;
        font-size: 1.1rem;
    }
}