/* ------------------- Global Styles ------------------- */
body {
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 19px;
    line-height: 1.95;
    margin: 0;
    padding: 0;
    color: #111;
    background-color: #ffffff;
    letter-spacing: 0.2px;
}

/* ------------------- Typography ------------------- */
h1, h2, h3, h4, h5, h6 {
    margin: 35px auto 18px auto;
    padding-bottom: 12px;
    font-weight: 700;
    font-size: 1.8em;
    text-align: center;
    width: 100%;
    max-width: 900px;
    border-bottom: 2px solid #e5e5e5;
    color: #222;
}

h2 {
    font-size: 1.6em;
}

h3 {
    font-size: 1.45em;
}

p {
    margin: 26px auto;
    max-width: 900px;
    font-size: 19.5px;
    line-height: 2;
    text-align: justify;
    color: #333;
}

/* ------------------- Image Styling ------------------- */
img {
    display: block;
    margin: 30px auto;
    max-width: 900px;
    width: 100%;
    border-radius: 8px;       /* Soft Rounded Corners */
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Image Caption Box */
.image-caption {
    max-width: 900px;
    margin: -18px auto 25px auto;   /* Perfect alignment under image */
    font-size: 15px;
    color: #555;
    text-align: center;
    font-style: italic;
}

/* ------------------- Container ------------------- */
.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 40px;
}

/* ------------------- Table Styles ------------------- */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px auto;
    max-width: 900px;
    border-radius: 6px;
    overflow: hidden;
}

table, th, td {
    border: 1px solid #444;
}

th, td {
    padding: 14px;
    text-align: left;
}

th {
    background-color: #f3f3f3;
    font-weight: 700;
}

/* ------------------- Highlight Box ------------------- */
.highlight-box {
    max-width: 900px;
    margin: 25px auto;
    padding: 18px 22px;
    background: #fffbe6;
    border-left: 5px solid #ffcc00;
    border-radius: 4px;
    font-size: 19px;
    line-height: 1.9;
}

/* ------------------- WhatsApp Icon ------------------- */
.whatsapp-icon {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 62px;
    height: 62px;
    z-index: 10000;
}

.whatsapp-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ------------------- Footer ------------------- */
.footer {
    background-color: #f8f8f8;
    padding: 22px 0;
    text-align: center;
    font-size: 15.5px;
    color: #000;
    border-top: 3px solid #ffcc00;
    margin-top: 40px;
}

.footer a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.footer a:hover {
    text-decoration: underline;
}

/* ------------------- AdSense Styling ------------------- */
#adsense-container-top,
#adsense-container-middle,
#adsense-container-bottom {
    width: 100%;
    margin: 30px 0;
    text-align: center;
}

.adsbygoogle {
    display: inline-block !important;
    max-width: 100%;
}

/* ------------------- Responsive Design ------------------- */
@media (max-width: 768px) {
    body {
        font-size: 17.5px;
        line-height: 1.9;
    }

    h1, h2, h3, h4, h5, h6 {
        font-size: 1.45em;
        margin: 26px auto 14px auto;
    }

    .container {
        width: 95%;
        padding: 15px 15px;
    }

    p {
        font-size: 17.8px;
        line-height: 1.9;
        margin: 20px auto;
        padding: 0 6px;
    }

    img {
        border-radius: 6px;
        margin: 25px auto;
    }

    .image-caption {
        font-size: 14px;
    }

    .whatsapp-icon {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
}