body { 
    font-family: 'Poppins', sans-serif; 
    line-height: 1.8; 
    color: #334155; 
    margin: 0; 
    padding: 0; 
    background: #fdfdfd; 
}

.header { 
    background: #0f172a; 
    color: white; 
    padding: 70px 20px; 
    text-align: center; 
    border-bottom: 5px solid #2563eb; 
}

.container { 
    max-width: 850px; 
    margin: 50px auto; 
    padding: 0 20px; 
}

h1 { 
    margin: 0; 
    font-size: 38px; 
    letter-spacing: -1px; 
}

h2 { 
    color: #2563eb; 
    font-size: 24px; 
    margin-top: 40px; 
    border-bottom: 1px solid #e2e8f0; 
    padding-bottom: 10px; 
}

.back-btn { 
    display: inline-block; 
    margin-top: 25px; 
    color: white; 
    text-decoration: none; 
    border: 1.5px solid rgba(255,255,255,0.3); 
    padding: 12px 25px; 
    border-radius: 10px; 
    transition: 0.3s; 
    font-weight: 500; 
    font-size: 14px; 
}

.back-btn:hover { 
    background: white; 
    color: #0f172a; 
    border-color: white; 
}

p { 
    margin-bottom: 25px; 
    text-align: justify; 
    font-size: 16px; 
}

strong { 
    color: #0f172a; 
}

/* --- MOBILE FIT PATCH --- */
* { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; }
img, svg, video { max-width: 100%; height: auto; }
.container, main, section, article { min-width: 0; overflow-wrap: anywhere; }

@media (max-width: 760px) {
    body { padding: 0 !important; }
    .container, main, section, article {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    h1 { font-size: 26px !important; line-height: 1.2 !important; }
    h2 { font-size: 20px !important; line-height: 1.25 !important; }
    p, li { font-size: 15px !important; line-height: 1.65 !important; }
}
