.faq-container {
    background-color: transparent;
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: #333;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.question {
    cursor: pointer;
    font-weight: bold;
    color: #3498db;
}

.answer {
    display: none;
    margin-top: 10px;
    color: #555;
    animation: fadeIn 0.5s ease-in-out;
}

/* Open/close animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}