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

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

.faq-question {
    background-color: #f7f7f7;
    border: none; outline: none;
    width: 100%;
    text-align: left;
    padding: 1rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover, .faq-question.active {
    background-color: #e2e2e2;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1rem;
}