.faq-container {
    max-width: 1000px;
    margin: 3rem auto;
}

.faq-item {
    background: rgba(8, 11, 14, 0.18);
    border: 1px solid rgba(0, 167, 150, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.faq-question:hover {
    background: rgba(0, 167, 150, 0.1);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #00a796;
    transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    margin-top: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1.5rem;
    will-change: max-height, opacity, padding, margin;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    margin-top: 0.25rem;
    opacity: 1;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-container {
        margin: 2rem auto;
        padding: 0 1rem;
    }
    
    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem;
    }
    
    .faq-item.active .faq-answer {
        padding-bottom: 1.25rem;
    }
}
