.faq-container {
    flex: 1 1 320px;
    background: #f8fafb;
    border-radius: 10px;
    padding: 16px 18px 18px 18px;
    margin: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    font-size: 1rem;
    align-self: stretch;
    display: flex;
    flex-direction: column;
}

.faq-container h2 {
    text-align: center;
    margin-top: 0;
    font-size: 2.1rem;
    font-family: inherit;
    font-weight: 700;
    color: #0E8388;
    letter-spacing: 0.01em;
    margin-bottom: 12px;
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.18s, background 0.22s;

    position: relative;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}

.faq-item.open {
    box-shadow: 0 4px 16px rgba(14, 131, 136, 0.10);
    background: #f2fafb;
}

.faq-question {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    font-weight: 600;
    color: #0E8388;
    font-size: 1.0rem;
    cursor: pointer;
    width: 100%;
    height: 100%;
    text-align: left;
    padding: 10px;
    border-radius: 10px;
    transition: color 0.2s, background 0.2s;
    gap: 10px;
    outline: none;
}

.faq-question .arrow {
    margin-left: auto;
    transition: transform 0.24s cubic-bezier(.4,2,.7,.8);
    font-size: 1.2em;
    color: #76bfc1;
}

.faq-question:hover,
.faq-item.open .faq-question {
    color: #076063;
    background: #e8f7f9;
}

.faq-item.open .faq-question .arrow {
    transform: rotate(90deg);
    color: #0E8388;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.40s cubic-bezier(.35,.74,.58,1.01), opacity 0.22s;
    font-weight: normal;
    color: #263339;
    background: transparent;
    font-size: 1rem;
}

.faq-item.open .faq-answer {
    opacity: 1;
    margin: 10px;
    min-height: fit-content; /* Large enough for your longest answer */

}

@media (max-width: 720px) {
    .faq-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .faq-container {
        padding: 12px 4px;
    }
}
