/* =========================
HealthMozo Medical Review Policy
========================= */

.hmc-medical-policy-page{
    background:#f5f9fc;
    padding:60px 20px;
    font-family:Arial, sans-serif;
    color:#1f2937;
    line-height:1.8;
}

.hmc-medical-policy-page .hmc-container{
    max-width:950px;
    margin:auto;
    background:#ffffff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 12px 35px rgba(0,0,0,0.06);
}

.hmc-medical-policy-page h1{
    font-size:42px;
    color:#0f172a;
    margin-bottom:10px;
    line-height:1.2;
}

.hmc-policy-update{
    color:#6b7280;
    font-size:15px;
    padding-bottom:20px;
    margin-bottom:35px;
    border-bottom:1px solid #e5e7eb;
}

.hmc-medical-policy-page p{
    font-size:17px;
    color:#374151;
    margin-bottom:18px;
}

.hmc-policy-section{
    margin-top:40px;
    padding:30px;
    background:#f9fbff;
    border:1px solid #e5edf7;
    border-radius:16px;
    transition:0.3s ease;
}

.hmc-policy-section:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 24px rgba(0,0,0,0.06);
}

.hmc-policy-section h2{
    font-size:28px;
    color:#0f172a;
    margin-bottom:18px;
    padding-left:18px;
    position:relative;
}

.hmc-policy-section h2::before{
    content:"";
    position:absolute;
    left:0;
    top:5px;
    width:5px;
    height:32px;
    border-radius:10px;
    background:#10b981;
}

.hmc-policy-section ul{
    margin:15px 0 22px 0;
    padding-left:0;
    list-style:none;
}

.hmc-policy-section ul li{
    position:relative;
    padding:12px 15px 12px 42px;
    margin-bottom:10px;
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    font-size:16px;
    color:#374151;
}

.hmc-policy-section ul li::before{
    content:"✓";
    position:absolute;
    left:15px;
    top:10px;
    width:22px;
    height:22px;
    background:#10b981;
    color:#ffffff;
    border-radius:50%;
    font-size:14px;
    line-height:22px;
    text-align:center;
    font-weight:bold;
}

.hmc-medical-policy-page a{
    color:#0ea5e9;
    text-decoration:none;
    font-weight:600;
}

.hmc-medical-policy-page a:hover{
    color:#0284c7;
    text-decoration:underline;
}

/* Responsive */

@media(max-width:768px){

    .hmc-medical-policy-page{
        padding:30px 15px;
    }

    .hmc-medical-policy-page .hmc-container{
        padding:30px 22px;
        border-radius:16px;
    }

    .hmc-medical-policy-page h1{
        font-size:32px;
    }

    .hmc-medical-policy-page p{
        font-size:16px;
    }

    .hmc-policy-section{
        padding:22px;
        margin-top:30px;
    }

    .hmc-policy-section h2{
        font-size:22px;
    }

}

/* Small Mobile */

@media(max-width:480px){

    .hmc-medical-policy-page .hmc-container{
        padding:24px 18px;
    }

    .hmc-medical-policy-page h1{
        font-size:28px;
    }

    .hmc-policy-section h2{
        font-size:20px;
        line-height:1.4;
    }

    .hmc-medical-policy-page p,
    .hmc-policy-section ul li{
        font-size:15px;
    }

    .hmc-policy-section ul li{
        padding:11px 12px 11px 40px;
    }

}