.elementor-198 .elementor-element.elementor-element-041119d{--display:flex;}/* Start custom CSS for html, class: .elementor-element-e0f36cc *//* ===============================
        HEADER BANNER
================================*/

.policy-header-banner{

    max-width:1200px;
    margin:50px auto 40px;
    padding:70px 40px;

    text-align:center;

    background:linear-gradient(135deg,#ff4d5a,#c31432);

    border-radius:30px;

    color:#fff;

    box-shadow:0 25px 60px rgba(255,0,70,.25);

}

.policy-badge{

    display:inline-block;

    padding:10px 22px;

    background:rgba(255,255,255,.15);

    border:1px solid rgba(255,255,255,.25);

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    margin-bottom:25px;

    backdrop-filter:blur(10px);

}

.policy-title{

    font-size:52px;

    font-weight:800;

    line-height:1.2;

    margin-bottom:18px;

    color:#fff;

}

.policy-subtitle{

    max-width:850px;

    margin:auto;

    font-size:19px;

    color:rgba(255,255,255,.9);

    line-height:1.8;

}

/* ===============================
        TABS
================================*/

.policy-nav-tabs{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

    margin-top:40px;

}

.policy-tab-link{

    text-decoration:none;

    color:#fff;

    padding:14px 26px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.2);

    transition:.35s;

    font-weight:600;

}

.policy-tab-link:hover{

    background:#fff;

    color:#d90429;

    transform:translateY(-3px);

}

.policy-tab-link.active{

    background:#fff;

    color:#d90429;

    font-weight:700;

}

/* ===============================
        MOBILE
================================*/

@media(max-width:768px){

.policy-header-banner{

padding:45px 20px;

}

.policy-title{

font-size:34px;

}

.policy-subtitle{

font-size:16px;

}

.policy-nav-tabs{

gap:10px;

}

.policy-tab-link{

padding:10px 18px;

font-size:14px;

}

}
/* ==========================================
        BIORECALL FAQ PAGE CSS
==========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Plus Jakarta Sans",sans-serif;
    background:#f7f7fb;
    color:#222;
    line-height:1.7;
}

/* Main Card */

.policy-content-card{

    width:90%;
    max-width:1200px;
    margin:50px auto;
    background:#fff;
    border-radius:25px;
    padding:45px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);

}

/* Section */

.policy-section-heading{

    font-size:34px;
    font-weight:700;
    margin-bottom:10px;
    color:#111;

}

.policy-section p{

    color:#555;
    margin-bottom:30px;

}

/* ================= FAQ ================= */

.faq-accordion-container{

    display:flex;
    flex-direction:column;
    gap:18px;

}

.faq-card{

    border-radius:18px;
    background:#fff;
    border:1px solid #ececec;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 8px 30px rgba(0,0,0,.08);

}

.faq-card:hover{

    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(255,69,90,.15);

}

.faq-card summary{

    list-style:none;
    cursor:pointer;

}

.faq-card summary::-webkit-details-marker{

    display:none;

}

/* QUESTION */

.faq-question{

    display:block !important;

    width:100%;

    padding:22px 65px 22px 25px;

    position:relative;

    font-size:18px !important;

    font-weight:700 !important;

    color:#1d1d1d !important;

    line-height:1.6;

    background:#fff;

}

/* PLUS ICON */

.faq-question::after{

    content:"+";

    position:absolute;

    right:25px;

    top:50%;

    transform:translateY(-50%);

    font-size:30px;

    color:#ff3657;

    font-weight:700;

    transition:.3s;

}

.faq-card[open] .faq-question{

    background:#fff7f8;

}

.faq-card[open] .faq-question::after{

    content:"−";
    transform:translateY(-50%) rotate(180deg);

}

/* ANSWER */

.faq-answer{

    padding:0 25px 25px;

    color:#555;

    font-size:16px;

    line-height:1.9;

    border-top:1px solid #eee;

    animation:fade .35s ease;

}

.faq-answer strong{

    color:#111;

}

.faq-answer a{

    color:#ff3657;
    font-weight:600;

}

.faq-answer a:hover{

    text-decoration:underline;

}

/* CONTACT BOX */

.policy-contact-box{

    margin-top:60px;

    background:linear-gradient(135deg,#ff3657,#d7263d);

    color:#fff;

    text-align:center;

    border-radius:20px;

    padding:45px;

}

.policy-contact-box h4{

    font-size:32px;

    margin-bottom:15px;

}

.policy-contact-box p{

    color:#fff;

}

.policy-contact-box a{

    color:#fff;

    font-weight:bold;

}

/* Button */

.nav-playstore-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#fff;

    color:#ff3657;

    padding:14px 26px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.nav-playstore-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

/* Animation */

@keyframes fade{

    from{

        opacity:0;
        transform:translateY(-10px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/* Mobile */

@media(max-width:768px){

.policy-content-card{

    width:95%;
    padding:22px;

}

.policy-section-heading{

    font-size:28px;

}

.faq-question{

    font-size:16px !important;

    padding:18px 55px 18px 18px;

}

.faq-answer{

    padding:0 18px 20px;

    font-size:15px;

}

.policy-contact-box{

    padding:28px 20px;

}

.policy-contact-box h4{

    font-size:24px;

}

}/* End custom CSS */