    body {
        font-family: Arial, sans-serif;
        margin:0; padding:0;
        background:#ffffff; color:#222;
        overflow-x:hidden; /* FIX HORIZONTAL SCROLL */
    }

    /* HEADER */
    header {
        background:#003366;
        color:#fff;
        padding:25px 15px;
        text-align:center;
    }
    header img {
        width:180px;
        height:auto;
        display:block;
        margin:0 auto 10px;
    }
    header h1 {
        font-size:20px;
        margin:0;
        line-height:1.3;
        text-align:center;
        word-wrap:break-word;
    }

    /* GENERAL SECTION */
    .section {
        padding:20px 15px;
        max-width:600px;
        margin:0 auto;
        overflow-x:hidden; /* EXTRA SAFETY */
    }

    h2 {color:#003366; font-size:20px; margin-bottom:10px;}
    h3 {color:#003366;}

    /* BUTTON */
    .btn-call {
        background:#ff9900;
        color:#fff;
        padding:12px 18px;
        display:block;
        border-radius:8px;
        font-size:18px;
        text-decoration:none;
        font-weight:bold;
        margin-top:10px;
        text-align:center;
        width:100%;
    }

    /* SERVICE BOX */
    .service-box {
        background:#e6eef8;
        padding:15px;
        border-radius:8px;
        margin-bottom:15px;
    }

    /* FORM */
    .form-box {
        background:#f2f6fa;
        padding:40px;
        border-radius:8px;
        margin-top:15px;
    }
    .form-box input, .form-box textarea {
        width:100%;
        padding:12px;
        margin-bottom:12px;
        border:1px solid #ccc;
        border-radius:6px;
        font-size:16px;
    }

    .submit-btn {
        width:100%;
        padding:14px;
        background:#003366;
        border:none;
        border-radius:6px;
        color:#fff;
        font-size:18px;
        font-weight:bold;
        cursor:pointer;
    }

    /* STICKY CALL BUTTON */
    .sticky-call {
        position:fixed;
        bottom:20px;
        right:20px;
        background:#ff9900;
        color:#fff;
        padding:14px 22px;
        border-radius:50px;
        font-size:18px;
        font-weight:bold;
        text-decoration:none;
        box-shadow:0 4px 10px rgba(0,0,0,0.25);
        animation:pulse 1.5s infinite;
        z-index:999;
    }

    @keyframes pulse {
        0% {transform:scale(1);}
        50% {transform:scale(1.08);}
        100% {transform:scale(1);}
    }

    /* MOBILE OPTIMIZATION */
    @media (max-width:480px) {
        header img { width:60px; }
        header h1 { font-size:18px; }

        h2 { font-size:18px; }
        p, li { font-size:15px; line-height:1.5; }

        .btn-call { font-size:16px; padding:10px; }
        .submit-btn { font-size:16px; padding:12px; }
        .sticky-call { font-size:16px; padding:12px 18px; }
    }

    /* HIDE STICKY ON DESKTOP */
    @media (min-width:700px) {
        .sticky-call { display:none; }
    }

    /* FOOTER */
footer {
    background:#003366;
    color:#fff;
    padding:18px 15px;
    text-align:center;
    font-size:14px;
    margin-top:30px;
    line-height:1.5;
    overflow-x:hidden; /* prevention for scroll issue */
}

footer p {
    margin:6px 0;
}

/* MOBILE */
@media (max-width:480px) {
    footer {
        font-size:13px;
        padding:15px;
    }
}
