:root {
            --wifa-primary: #003366;
            --wifa-secondary: #E63946;
            --wifa-accent: #FFD700;
            --wifa-light: #F8F9FA;
            --wifa-dark: #212529;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--wifa-dark);
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--wifa-primary) !important;
        }
        .navbar-nav .nav-link {
            font-weight: 600;
            padding: 0.5rem 1.2rem;
            transition: all 0.3s ease;
        }
        .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
            color: var(--wifa-secondary) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 51, 102, 0.9)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        }
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
        }
        .btn-wifa-primary {
            background-color: var(--wifa-secondary);
            border-color: var(--wifa-secondary);
            color: white;
            padding: 0.75rem 2rem;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-wifa-primary:hover {
            background-color: #c1121f;
            border-color: #c1121f;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .btn-wifa-outline {
            border: 2px solid white;
            color: white;
            padding: 0.75rem 2rem;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-wifa-outline:hover {
            background-color: white;
            color: var(--wifa-primary);
            transform: translateY(-3px);
        }
        .section-title {
            color: var(--wifa-primary);
            font-weight: 800;
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
            text-align: center;
        }
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--wifa-secondary);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        .card-wifa {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        .card-wifa:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        .card-wifa img {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .card-wifa:hover img {
            transform: scale(1.05);
        }
        .card-wifa .card-body {
            padding: 2rem;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: var(--wifa-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 1.5rem;
        }
        .stats-section {
            background-color: var(--wifa-primary);
            color: white;
            padding: 5rem 0;
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--wifa-accent);
            line-height: 1;
        }
        .stat-label {
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 0.5rem;
        }
        .contact-info-box {
            background: var(--wifa-light);
            border-radius: 15px;
            padding: 2.5rem;
            height: 100%;
            border-left: 5px solid var(--wifa-secondary);
            transition: transform 0.3s ease;
        }
        .contact-info-box:hover {
            transform: translateY(-5px);
        }
        .contact-info-box i {
            color: var(--wifa-secondary);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        .footer {
            background-color: var(--wifa-dark);
            color: rgba(255,255,255,0.8);
            padding: 4rem 0 2rem;
        }
        .footer a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: var(--wifa-accent);
        }
        .footer-title {
            color: white;
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
            font-size: 0.9rem;
        }
        .flink {
            background-color: white;
            border: 1px solid #eaeaea;
            border-radius: 10px;
            padding: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100px;
            transition: all 0.3s ease;
        }
        .flink:hover {
            border-color: var(--wifa-primary);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transform: translateY(-5px);
        }
        .flink img {
            max-height: 40px;
            max-width: 150px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        .flink:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--wifa-primary);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
        }
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        .timeline-content {
            padding: 20px 30px;
            background-color: white;
            position: relative;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            background-color: var(--wifa-secondary);
            border: 4px solid var(--wifa-primary);
            border-radius: 50%;
            top: 15px;
            z-index: 1;
        }
        .timeline-item:nth-child(odd)::after {
            right: -13px;
        }
        .timeline-item:nth-child(even)::after {
            left: -13px;
        }
        @media screen and (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1.2rem;
            }
            .timeline::after {
                left: 31px;
            }
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            .timeline-item:nth-child(even) {
                left: 0%;
            }
            .timeline-item::after {
                left: 18px;
            }
            .timeline-item:nth-child(odd)::after, .timeline-item:nth-child(even)::after {
                left: 18px;
            }
        }
