.general-container-who-to-get {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-bottom: 50px;
    margin-top: 0;
}

#title-who-to-get {
    color: var(--neutrals-800, var(--Color-Neutrals-Neutrals800, #433f3e));
    text-align: center;
    font-family: "Open Sans", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.text-center {
    text-align: center;
}

.button-see-more {
    width: 100%;
    max-width: 164px;
    height: 30px;
    border-radius: 18px;
    background: #1ac677;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
    color: var(--Color-Base-Base-Black, #0a0b0a);
    text-align: center;
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.button-see-more:hover {
    transform: scale(1.1);
}

.btn-girl {
    min-width: 360px;
    padding: inherit;
    font-size: 20px;
    border-radius: 50px;
    place-content: center;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.btn-girl:hover {
    transform: scale(1.1);
}

.faq-toggle {
    display: none;
}

.faq-container {
    max-width: 800px;
    margin: 20px auto;
}

.faq-container::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    display: none;
}


.faq-container:has(.faq-toggle:checked)::before {
    display: block;
    z-index: 1; 
}

.faq-card {
    margin-bottom: 16px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.collapsible {
    background-color: transparent;
    color: #333;
    cursor: pointer;
    padding: 22px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    user-select: none;
    box-sizing: border-box;
}

.collapsible::after {
    content: '\25BC';
    font-size: 12px;
    color: #1ac677;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-toggle:checked + .collapsible::after {
    transform: rotate(180deg);
}

.content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.content p {
    padding: 0 22px 22px 22px;
    margin: 0;
    color: #666;
    line-height: 1.6;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-toggle:checked ~ .content {
    max-height: 400px;
}

.faq-toggle:checked ~ .content p {
    opacity: 1;
}

.faq-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

@media screen and (min-width: 10px) and (max-width: 355px) {
    .general-container-who-to-get {
        margin-bottom: 40px;
        gap: 0;
    }

    #title-who-to-get {
        color: var(--neutrals-800, var(--Color-Neutrals-Neutrals800, #433f3e));
        text-align: center;
        font-family: "Open Sans", sans-serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        display: block;
    }

    .btn-girl {
        font-size: 14px;
        min-width: auto;
        height: auto;
        margin-top: 10px;
        display: flex;
    }
}

@media screen and (min-width: 357px) and (max-width: 768px) {
    .general-container-who-to-get {
        gap: 0;
        margin-bottom: 50px;
    }

    .faq-container {
        margin-left: 10px;
        margin-right: 10px;
    }

    #title-who-to-get {
        color: var(--neutrals-800, var(--Color-Neutrals-Neutrals800, #433f3e));
        text-align: center;
        font-family: "Open Sans", sans-serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        display: block;
    }

    .btn-girl {
        height: auto;
        margin-top: 10px;
        display: flex;
        align-items: center;
        font-size: 16px;
    }

    .button-see-more {
        font-size: 16px;
        height: 49px;
        border-radius: 50px;
    }
}