:root {
            --ciiprimary: #0047AB;
            --ciisecondary: #FF671F;
            --cilight: #F8F9FA;
            --cidark: #212529;
            --ciaccent: #046A38;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            line-height: 1.7;
        }
        .header-gradient {
            background: linear-gradient(135deg, var(--ciiprimary) 0%, #002d6d 100%);
        }
        .hero-section {
            background: linear-gradient(rgba(0, 71, 171, 0.85), rgba(0, 45, 109, 0.9)), url('https://images.unsplash.com/photo-1612170153139-6f881ff067e0?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            min-height: 85vh;
            display: flex;
            align-items: center;
        }
        .section-padding {
            padding: 5rem 0;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }
        .service-card, .news-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
        }
        .service-card:hover, .news-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        .btn-cii {
            background: var(--ciisecondary);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            border: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-cii:hover {
            background: #e55c1a;
            color: white;
            transform: scale(1.05);
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--ciiprimary);
            line-height: 1;
        }
        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1.2rem;
            border-radius: 6px;
            transition: all 0.3s;
        }
        .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.15);
        }
        .footer {
            background: linear-gradient(to right, #1a1a2e, #16213e);
            color: #e0e0e0;
        }
        .flink {
            color: #a3c6ff;
            text-decoration: none;
            padding: 0.4rem 0.8rem;
            border-radius: 4px;
            transition: all 0.3s;
            display: inline-block;
            margin: 0.2rem 0;
        }
        .flink:hover {
            color: white;
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(0, 71, 171, 0.1);
            color: var(--ciiprimary);
            font-weight: 600;
        }
        .timeline-item {
            border-left: 3px solid var(--ciiprimary);
            padding-left: 2rem;
            padding-bottom: 2rem;
            position: relative;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -10px;
            top: 0;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--ciisecondary);
        }
        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        @media (max-width: 768px) {
            .hero-section {
                min-height: 70vh;
                text-align: center;
            }
            .section-padding {
                padding: 3rem 0;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
