        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: #f8fafc;
        }
        
        /* 1. Navbar Adjustments */
        .navbar {
            backdrop-filter: blur(15px);
            background-color: rgba(255, 255, 255, 0.95) !important;
        }

        /* 2. Premium Deep Blue & Glowing Hero Background */
        .hero-section {
            background: linear-gradient(135deg, #0b2437 0%, #0f3554 50%, #134670 100%);
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 120, 212, 0.25) 0%, transparent 70%);
            z-index: 1;
        }

        /* 3. Stat Card Offset Positioning & Borders */
        .stat-card-offset {
            margin-top: -50px;
            position: relative;
            z-index: 20;
        }
        .feature-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid transparent !important;
        }
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
        }
        .border-bottom-blue { border-top-color: #0078d4 !important; }
        .border-bottom-green { border-top-color: #107c41 !important; }
        .border-bottom-yellow { border-top-color: #ffb900 !important; }

        /* Icon Box Inside Cards */
        .icon-box {
            width: 55px;
            height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        /* 4. Operational Activities Cards */
        .service-card {
            transition: all 0.3s ease;
            border: 1px solid rgba(0,0,0,0.03) !important;
        }
        .service-card:hover {
            transform: scale(1.02);
            box-shadow: 0 20px 40px rgba(0,0,0,0.06) !important;
        }

        /* 5. Custom Utilities for fixing Tailwind Mismatches */
        .hover-warning:hover {
            color: #ffc107 !important;
            transition: color 0.2s ease;
        }