/* HOME FAQS CSS VERSION 1 */

/* SECTION */

.home_faqs_section {
    position: relative;
    z-index: 3;
}

.home_faqs_container {
    background: #e5e5e5; /* MID GREY */
    padding-top: 4rem;
    padding-bottom: 4rem;
Margin-top: -128px;
border-top: 1px solid #454545;
border-bottom: 1px solid #454545;

    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.12),
        0 2px 4px rgba(0, 0, 0, 0.08);
}

/* HEADER */

.home_faqs_header {
    max-width: 52rem;
}

/* FAQ LIST */

.home_faqs_list {
    margin: 2rem auto 0;
    max-width: 760px;
    width: 100%;
}

/* FAQ ITEM */

.home_faq_item {
    background: #ffffff;
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;

    box-shadow:
        0 4px 10px rgba(0,0,0,0.15),
        0 1px 3px rgba(0,0,0,0.08);
}

/* SUMMARY */

.home_faq_item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.1rem 1.2rem;
    font-weight: var(--weight-bold);
    font-size: 0.98rem;
    position: relative;
}

/* REMOVE DEFAULT ARROW */

.home_faq_item summary::-webkit-details-marker {
    display: none;
}

/* CUSTOM ICON */

.home_faq_item summary::after {
    content: "+";
    position: absolute;
    right: 1.2rem;
    top: 1rem;
    font-size: 1.4rem;
    font-weight: bold;
    color: #111111;
    transition: transform 0.2s ease;
}

.home_faq_item[open] summary::after {
    content: "−";
}

/* CONTENT */

.home_faq_content {
    padding: 0 1.2rem 1.2rem;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #555555;
}

/* FOOTER */

.home_faqs_footer {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* RESPONSIVE */

@media (max-width: 767px) {

    .home_faqs_container {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .home_faq_item summary {
        font-size: 0.95rem;
    }

    .home_faq_content {
        font-size: 0.9rem;
    }
}