
details {
    transition: all 0.4s ease;
    margin-bottom: 10px;
}
details summary {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 4.5rem 0.5rem 1rem;
    border-radius: 16px;
    background: rgba(7, 38, 38, 0.03);
    color: #072626;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    cursor: pointer;
    transition: all 0.4s ease;
}
details summary::-webkit-details-marker {
    display: none;
}
details summary:after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 10px;
    background: rgba(4, 154, 155, 0.1);
    transition: all 0.4s ease;
    transform: translateY(-50%);
}
@media (min-width: 768px) {
    details summary {
        padding: 1.1875rem 4.5rem 1.1875rem 1rem;
    }
}
details p {
    margin: 0;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(7, 38, 38, 0.2);
    background: rgba(7, 38, 38, 0.03);
    color: #072626;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
}
details[open] summary {
    margin-bottom: 0.75rem;
}
details[open] summary:after {
    content: "-";
}

.faq__wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq--group {margin-bottom: 16px;}
.faq--group-title {background-color: var(--main);padding:10px 16px;color:#fff;border-radius: 12px;margin-bottom: 10px}