
/* RESET */
body {
    font-family: 'Inter', Arial, sans-serif;
    background: #f4f7fb;
    color: #222;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* CONTAINER */
.container {
    max-width: 1100px;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #003b8b, #007bff);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    opacity: 0.95;
}

/* CALL BUTTON */
.call-btn {
    background: #ffc107;
    color: #000;
    padding: 14px 28px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.call-btn:hover {
    background: #ffb300;
    transform: translateY(-2px);
}

/* HEADINGS */
h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #003b8b;
}

h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    color: #0056b3;
}

h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 25px;
}

h5 {
    font-size: 16px;
    font-weight: 600;
}

/* PARAGRAPH */
p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}

/* LINKS */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* TABLE */
table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

table td, table th {
    padding: 14px;
    border-bottom: 1px solid #eee;
}

table tr:hover {
    background: #f9fbff;
}

/* LIST */
ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 8px;
}

/* SECTION BOX */
section {
    background: #fff;
    margin-top: 20px;
    border-radius: 12px;
    padding: 40px 25px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

/* FAQ STYLE */
h5 {
    background: #f1f5ff;
    padding: 10px;
    border-radius: 6px;
}

/* STICKY CALL BAR */
.sticky-call {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #ffc107;
    text-align: center;
    padding: 14px;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.sticky-call a {
    color: #000;
    font-weight: 700;
    font-size: 18px;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {

    .hero {
        padding: 50px 15px;
    }

    .hero h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 22px;
    }

    section {
        padding: 25px 15px;
    }

    .sticky-call {
        display: block;
    }
}
