.faq {
    padding: 80px 0 0 0;
    background: white;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 14px;
    overflow: hidden;
    background: #F7F1EB;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}


.faq-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.faq-toggle-btn {
    width: 100%;
    max-width: 720px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border-radius: 999px;

    border: 1px solid rgba(255, 255, 255, 0.15);

    background: rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    color: #2B1D16;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition: all .25s ease;

    box-shadow:
        0 6px 22px rgba(0, 0, 0, 0.06),
        inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

/* hover highlight */
.faq-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.10),
        inset 0 1px 2px rgba(255, 255, 255, 0.18);
}

/* active click feel */
.faq-toggle-btn:active {
    transform: scale(0.98);
}

/* icon style */
.faq-toggle-btn svg {
    transition: transform .3s ease;
}

.faq-toggle-btn:hover svg {
    transform: scale(1.1) rotate(-6deg);
}

.faq-answer.hidden-extra {
    display: none;
}

.faq-item.hidden-extra {
    display: none;
}


@media(max-width:768px) {
  .faq-toggle-btn {
    width: 100%;
    max-width: 100%;
    height: 52px;
    font-size: 15px;
  }
}
