:root {
    --accent: #e6f7fd;
    --bg: #ffffff;
    --muted: #6b7280;
    --card: #f8fafc;
    --radius: 10px;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}


.faq-wrap {
    margin: 0 auto;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: 0 6px 20px rgba(12, 15, 20, 0.06);
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.faq-head {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
}

.dot {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #05270a;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 6px 18px rgba(138, 255, 2, 0.12);
}

h1 {
    margin: 0
}

h2 {
    margin: 0
}

p.lead {
    margin: 6px 0 18px;
    color: var(--muted)
}

.accordion {
    margin-top: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.item {
    border-top: 1px solid rgba(15, 23, 42, 0.04);
    background: transparent;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--accent);
    border-radius: 1rem;
}


.question {
    display: flex;
    align-items: center;
    background-color: var(--accent);
    justify-content: space-between;
    padding: 16px 18px;
    cursor: pointer;
    flex-grow: 1;
    border: 0px;
    border-radius: 1rem 1rem 0rem 0rem;
}

button.question:focus {
    outline: 2px solid var(--accent);
    outline-offset: -1px;
}

.question[aria-expanded="false"] {
    border-radius: 1rem;

}

.q-left {
    display: flex;
    gap: 14px;
    align-items: center
}

.q-title {
    font-size: 16px;
    margin: 0;
    color: #05270a;
    text-align: left;
}

.q-hint {
    color: var(--muted);
    font-size: 13px;
    text-align: left;
}

.chev {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    transition: transform .25s ease;
    background: rgba(10, 12, 15, 0.03);
}

.answer {
    padding: 1rem 1rem 1rem 4rem;
    color: var(--muted);
    line-height: 1.6;
    font-size: 15px;
    display: none;
}

.item[aria-expanded="true"] .answer {
    display: block
}

.item[aria-expanded="true"] .chev {
    transform: rotate(180deg);
    color: #05270a;
}

.link-muted {
    color: var(--muted);
    font-weight: 600
}

@media (max-width:560px) {

    .answer {
        padding-left: 18px
    }
}