:root {
    --primary-blue: #0056D2;
    --white: #ffffff;
    --bg-color: #f4f7f9;
}

body {
    font-family: sans-serif;
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
}


/* हेडर को फिक्स्ड रखा है ताकि प्रोफेशनल दिखे */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary-blue);
    padding: 12px 0;
    /* मोबाइल के लिए सही पैडिंग */
    display: flex;
    justify-content: space-around;
    /* मोबाइल मेनू के लिए बेहतर */
    align-items: center;
    color: white;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-highlight {
    background: white;
    color: var(--primary-blue);
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}


/* --- असली 'मर्दान' यहाँ है --- */

.main-container {
    max-width: 900px;
    /* 150px ऊपर से गैप ताकि बड़ा एड (Banner Ad) आराम से फिट हो सके */
    margin: 150px auto 40px auto;
    padding: 0 15px;
}


/* विज्ञापन के लिए खास खाली डिब्बे (Ad Slots) */

.ad-space {
    background: #ffffff;
    border: 1px dashed #cccccc;
    margin: 30px 0;
    /* हर एड और कंटेंट के बीच तगड़ा गैप */
    padding: 10px;
    text-align: center;
    min-height: 100px;
    /* एड लोड होने से पहले जगह घेरे रखेगा */
    border-radius: 8px;
    color: #999;
    font-size: 12px;
}

.page-title {
    text-align: center;
    color: var(--primary-blue);
    font-size: 24px;
    margin-bottom: 25px;
}

.content-card {
    background: white;
    border-radius: 10px;
    margin-bottom: 35px;
    /* कार्ड्स के बीच भी मर्दान */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-header {
    padding: 15px;
    color: white;
    font-weight: bold;
    text-align: center;
    font-size: 18px;
}

.blue-head {
    background: var(--primary-blue);
}

.green-head {
    background: #28a745;
}

.orange-head {
    background: #fd7e14;
}

.image-container {
    padding: 15px;
    text-align: center;
    background: #fff;
}

.responsive-img {
    width: 100%;
    /* मोबाइल स्क्रीन पर एकदम फिट */
    height: auto;
    border-radius: 5px;
    border: 1px solid #eee;
}

.text-content {
    padding: 20px;
}

.text-content li {
    padding: 12px;
    border-bottom: 1px solid #eee;
    color: #444;
    font-size: 15px;
}

.btn-back {
    display: block;
    width: 220px;
    margin: 30px auto;
    text-align: center;
    background: #333;
    color: white;
    padding: 14px;
    text-decoration: none;
    border-radius: 50px;
    /* मॉडर्न लुक */
    font-weight: bold;
}

.site-footer {
    text-align: center;
    padding: 30px;
    background: #222;
    color: #888;
    margin-top: 50px;
}


/* मोबाइल के लिए खास सेटिंग */

@media (max-width: 600px) {
    .main-container {
        margin-top: 140px;
        /* मोबाइल पर हेडर थोड़ा छोटा होता है */
    }
    .page-title {
        font-size: 20px;
    }
}