/* FAQ section */
.faq-section {
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 70px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.faq-container {
    margin: 50px;
}

.faq-container h2 {
    text-align: center;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    font-weight: bold;
}

.faq-question p {
    font-weight: 600;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    padding: 0 10px;
}

.faq-answer p {
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 10px;
}

.arrow {
    transition: transform 0.3s ease-in-out;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

.faq-section h3 {
    text-align: center;
    margin: 70px 0px 20px 0px;
    color: #2E2E2E;
    font-weight: bold;
}

/* mobile */
@media (max-width: 768px) {
    .faq-container {
        margin: 50px 20px;
    }

    .faq-container h2 {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-section h3 {
        font-size: 1.5rem;
        margin: 50px 0px 20px 0px;
    }

    .arrow {
        width: 20px;
        height: 20px;
    }
}