:root {
            --primary-color: #0056a6;
            --secondary-color: #34a853;
            --accent-color: #ff6b35;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-color);
            line-height: 1.7;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary-color);
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color) !important;
        }
        .navbar-nav .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 86, 166, 0.85), rgba(52, 168, 83, 0.8)), url('https://images.unsplash.com/photo-1516549655669-df1c0a2b5faa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 120px 0;
        }
        .hero-section h1 {
            color: white;
            font-size: 3.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }
        .section-padding {
            padding: 80px 0;
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            text-align: center;
        }
        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            transform: scale(1.05);
        }
        .icon-box {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .facility-item, .news-item {
            border-left: 4px solid var(--secondary-color);
            padding-left: 1.5rem;
            margin-bottom: 2rem;
            transition: border-color 0.3s ease;
        }
        .facility-item:hover, .news-item:hover {
            border-left-color: var(--accent-color);
        }
        footer {
            background-color: var(--dark-color);
            color: var(--light-color);
            padding: 60px 0 20px;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            margin-bottom: 0.5rem;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .friendlink-section {
            background-color: #f1f8ff;
            padding: 40px 0;
            border-top: 1px solid #ddd;
            border-bottom: 1px solid #ddd;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 10px 20px;
            margin: 8px;
            border-radius: 50px;
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }
        .flink:hover {
            border-color: var(--primary-color);
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        .contact-info i {
            width: 30px;
            color: var(--secondary-color);
        }
        .sticky-top {
            top: 20px;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .section-padding {
                padding: 50px 0;
            }
        }
