h2 {
    text-align: center;
    color: #3f51b5;
    margin-bottom: 40px;
}

.faq-list {
    list-style: none;
    padding: 0;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.faq-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #3f51b5;
    color: white;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.faq-header .material-icons {
    margin-right: 10px;
}

.faq-content {
    padding: 20px;
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.faq-item.active .faq-content {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
