:root{
    --font-display: 'Lato', sans-serif;
    --font-body: 'Lato', sans-serif;
}

body{
    font-family: var(--font-body) !important;
    background: var(--bg-light) !important;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p, li{
    body{
        font-family: var(--font-body) !important;
    }
}

.shadow-none{box-shadow: none !important;}
.mb-1{margin-bottom: 1rem;}
.mb-2{margin-bottom: 2rem;}
.mb-3{margin-bottom: 3rem;}
.mb-4{margin-bottom: 4rem;}
.mb-5{margin-bottom: 5rem;}
        /* ==================== HEADER ==================== */
        .header {
            background: linear-gradient(135deg, #0a2540 0%, #1a3a5a 100%);
            color: var(--white);
            padding: 2rem !important;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.5;
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .header h1 {
            font-size: 2.5rem !important;
            font-weight: 900;
            margin-bottom: 0.5rem;
            color: #fff;
        }

        .header p {
            font-size: 1.2rem;
            font-weight: 300;
            opacity: 0.9;
            color: #fff;
        }

            .card-title {
                font-size: 1.8rem;
                font-weight: 700;
                color: var(--primary-dark);
                margin-bottom: 0.5rem;
            }
        .subtitle {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            font-weight: 300;
            letter-spacing: 1px;
        }

/*========== Seo According Content ==========*/
        .seo-block {
            padding: 24px 0;
            border-radius: 12px;
            line-height: 1.7;
            color: #2c2c2c;
            font-family: 'Lato', sans-serif;
        }

        /* Headings */
        .seo-block h2{
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
            color: #1f2937;
        }

        .seo-block h3{
            font-size: 20px;
            font-weight: 600;
            margin-top: 28px;
            margin-bottom: 12px;
            color: #111827;
        }

        .seo-block h4{
            font-size: 18px;
            font-weight: 600;
            margin-top: 22px;
            margin-bottom: 10px;
            color: #1f2937;
        }

        .seo-block h5{
            font-size: 16px;
            font-weight: 600;
            margin-top: 20px;
            margin-bottom: 8px;
            color: #374151;
        }

        .seo-block h6{
            font-size: 14px;
            font-weight: 600;
            margin-top: 20px;
            margin-bottom: 6px;
            color: #6b7280;
        }

        /* Paragraphs */
        .seo-block p{
            font-size: 16px;
            margin-bottom: 14px;
            color: #374151;
        }

        /* Lists */
        .seo-block ul{
            list-style: none;       /* Remove default bullets */
            padding-left: 0;
            margin: 16px 0;
        }

        .seo-block ul li{
            position: relative;
            padding-left: 28px;    /* Space for icon */
            margin-bottom: 10px;
            font-size: 15px;
            line-height: 1.6;
            color: #374151;
        }

        /* Add ✔ icon before each li */
        .seo-block ul li::before {
            content: "\2714";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            font-size: 17px;
            font-weight: 700;
            color: #1a73e8;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Strong text */
        .seo-block strong{
            color: #000000;
            font-weight: 600;
        }

        /* Mobile Responsive */
        @media (max-width: 768px){
            .seo-block{
                padding: 18px;
            }

            .seo-block h2{
                font-size: 24px;
            }

            .seo-block h3{
                font-size: 20px;
            }

            .seo-block h4{
                font-size: 17px;
            }

            .seo-block p,
            .seo-block ul li{
                font-size: 14px;
            }
        }

        footer {
            color: white;
            text-align: center;
            padding: 2rem;
            margin-top: 3rem;
            font-size: 16px;
            background: linear-gradient(135deg, #0a2540 0%, #1a3a5a 100%) !important;
        }

        /* Heart animation */
        footer span {
            display: inline-block;
            color: #ff4d6d;            /* Heart red color */
            margin: 0 4px;
            animation: heartbeat 1s infinite;
        }

        /* Heartbeat keyframes */
        @keyframes heartbeat {
            0%, 100% { transform: scale(1); }
            14% { transform: scale(1.3); }
            28% { transform: scale(1); }
            42% { transform: scale(1.3); }
            70% { transform: scale(1); }
        }

        /* Mobile responsive */
        @media (max-width: 768px){
            footer {
                font-size: 13px;
                padding: 12px 10px;
            }
        }

        footer a {
            color: #333;
            border-radius: 5px;
            padding: 5px 10px;
            background-color: #FFF;
            text-decoration: none;
            margin-left: 5px;
            font-size: 17px;
            position: relative;
            text-indent: 30px;
            display: inline-flex;
        }

        footer a:hover{
            background-color: #DB253F;
            color: #fff;
        }

        footer a:hover img{
            filter: brightness(0) invert(1); /* Makes icon white */
        }

        footer img {
            height: 23px;
            position: absolute;
        }



@media (max-width: 767px) {
footer{padding: 2rem 0; margin: 0;}
footer p{margin-bottom: 12px; font-size: 16px !important; padding: 0 1rem;}
footer a{margin: 20px 0 0 0; font-size: 14px;}
.logo{font-size: 2rem !important;}
.hero h1{font-size: 1.8rem; line-height: 34px;}
.header h1{font-size: 1.5rem !important;}
}