/* =========================================================
   FindMy FAQ Sections
   ========================================================= */

.findmy-faq-section {
    position: relative;
    padding: 90px 0;
    /*background: #f7fbfc;*/
    overflow: hidden;
}

.findmy-faq-section .container {
    position: relative;
    z-index: 1;
}


/* Header
--------------------------------------------------------- */

.findmy-faq-header {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.findmy-faq-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #008ea0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.findmy-faq-header h2 {
    margin: 0 0 14px;
    color: #17324d;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.findmy-faq-header p {
    max-width: 620px;
    margin: 0 auto;
    color: #6d7c89;
    font-size: 17px;
    line-height: 1.7;
}


/* Two-column layout
--------------------------------------------------------- */

.findmy-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}


/* FAQ Card
--------------------------------------------------------- */

.findmy-faq-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e3edf0;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 12px 35px rgba(23, 50, 77, 0.06);
}


/* Card Header
--------------------------------------------------------- */

.findmy-faq-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 25px;
    margin-bottom: 5px;
    border-bottom: 1px solid #edf2f4;
}

.findmy-faq-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #008ea0;
    background: #eaf9fa;
    border-radius: 14px;
}

.findmy-faq-icon svg {
    display: block;
}

.findmy-faq-card-header h3 {
    margin: 0 0 4px;
    color: #17324d;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.findmy-faq-card-header p {
    margin: 0;
    color: #7b8994;
    font-size: 14px;
    line-height: 1.5;
}


/* FAQ List
--------------------------------------------------------- */

.findmy-faq-list {
    margin-top: 5px;
}


/* Individual FAQ
--------------------------------------------------------- */

.findmy-faq-item {
    border-bottom: 1px solid #edf2f4;
}

.findmy-faq-item:last-child {
    border-bottom: 0;
}


/* Question
--------------------------------------------------------- */

.findmy-faq-item summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    color: #263f55;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    cursor: pointer;
    list-style: none;
}

.findmy-faq-item summary::-webkit-details-marker {
    display: none;
}

.findmy-faq-item summary::marker {
    display: none;
}

.findmy-faq-item summary:hover {
    color: #008ea0;
}


/* Plus / Minus Icon
--------------------------------------------------------- */

.findmy-faq-plus {
    position: relative;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f0f8f9;
    transition: all 0.25s ease;
}

.findmy-faq-plus::before,
.findmy-faq-plus::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 2px;
    background: #008ea0;
    border-radius: 2px;
    transform: translate(-50%, -50%);
}

.findmy-faq-plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 0.25s ease;
}


/* Open FAQ
--------------------------------------------------------- */

.findmy-faq-item[open] summary {
    color: #008ea0;
}

.findmy-faq-item[open] .findmy-faq-plus {
    background: #008ea0;
}

.findmy-faq-item[open] .findmy-faq-plus::before,
.findmy-faq-item[open] .findmy-faq-plus::after {
    background: #ffffff;
}

.findmy-faq-item[open] .findmy-faq-plus::after {
    transform: translate(-50%, -50%) rotate(0deg);
}


/* Answer
--------------------------------------------------------- */

.findmy-faq-answer {
    padding: 0 50px 22px 0;
}

.findmy-faq-answer p {
    margin: 0;
    color: #687987;
    font-size: 15px;
    line-height: 1.75;
}


/* Tablet
--------------------------------------------------------- */

@media (max-width: 991.98px) {

    .findmy-faq-section {
        padding: 70px 0;
    }

    .findmy-faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .findmy-faq-header {
        margin-bottom: 40px;
    }

    .findmy-faq-header h2 {
        font-size: 36px;
    }

}


/* Mobile
--------------------------------------------------------- */

@media (max-width: 575.98px) {

    .findmy-faq-section {
        padding: 55px 0;
    }

    .findmy-faq-header {
        margin-bottom: 30px;
    }

    .findmy-faq-header h2 {
        font-size: 30px;
    }

    .findmy-faq-header p {
        font-size: 15px;
    }

    .findmy-faq-card {
        padding: 22px 20px;
        border-radius: 16px;
    }

    .findmy-faq-card-header {
        align-items: flex-start;
        gap: 12px;
        padding-bottom: 20px;
    }

    .findmy-faq-icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .findmy-faq-card-header h3 {
        font-size: 21px;
    }

    .findmy-faq-item summary {
        padding: 17px 0;
        font-size: 15px;
    }

    .findmy-faq-answer {
        padding-right: 0;
        padding-bottom: 18px;
    }

    .findmy-faq-answer p {
        font-size: 14px;
        line-height: 1.7;
    }

}