#faq {
    padding: 80px 0;
}

.container {
    width: 80vw;
    margin-left: 10vw;
    padding: 0 20px;
}

.faq-wrapper {
    background: #e1bee2;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.2s ease-out;
}

.faq-wrapper:nth-child(2) {
    animation-delay: 0.1s;
}

.faq-wrapper:nth-child(3) {
    animation-delay: 0.2s;
}

.faq-wrapper:nth-child(4) {
    animation-delay: 0.3s;
}

.faq-wrapper:nth-child(5) {
    animation-delay: 0.4s;
}

.faq-wrapper:nth-child(6) {
    animation-delay: 0.5s;
}

.faq-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-wrapper:last-child {
    margin-bottom: 0;
}

.faq-wrapper h2 {
    color: #333;
    font-size: 2em;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.faq-wrapper p {
    color: #666;
    font-size: 1.5em;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

/* Responsive design */
@media (max-width: 768px) {
    #faq {
        padding: 50px 0;
    }

    .container {
        padding: 0 15px;
    }

    .faq-wrapper {
        padding: 25px 20px;
        margin-bottom: 15px;
    }

    .faq-wrapper h2 {
        font-size: 1.3em;
    }

    .faq-wrapper p {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .faq-wrapper {
        padding: 20px 15px;
    }

    .faq-wrapper h2 {
        font-size: 1.2em;
        margin-bottom: 12px;
    }
}