/* SECTION */
.faq-section {
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
}

/* CONTAINER */
.faq-container {
    max-width: 850px;
    margin: auto;
}

/* HEADER */
.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-badge {
    display: inline-block;
    background: #111827;
    color: white;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 14px;
    margin-bottom: 18px;
}

.faq-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
}

.faq-header p {
    color: #6b7280;
    font-size: 17px;
}

/* FAQ ITEM */
.faq-item {
    background: white;
    border-radius: 18px;
    margin-bottom: 18px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: .3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.faq-item:hover {
    transform: translateY(-2px);
}

/* QUESTION */
.faq-question {
    width: 100%;
    padding: 24px;
    border: none;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

/* ICON */
.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: .3s;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: #111827;
    border-radius: 10px;
    transition: .3s;
}

.faq-icon::before {
    width: 18px;
    height: 2px;
    top: 11px;
    left: 3px;
}

.faq-icon::after {
    width: 2px;
    height: 18px;
    top: 3px;
    left: 11px;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all .4s ease;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: #6b7280;
    line-height: 1.8;
    font-size: 16px;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-icon::after {
    opacity: 0;
}

/* MOBILE */
@media(max-width:768px) {

    .faq-header h2 {
        font-size: 32px;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px;
    }

    .faq-answer p {
        font-size: 15px;
    }

}