:root {
            --primary-color: #0056b3;
            --secondary-color: #28a745;
            --accent-color: #dc3545;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
        }
        h1, h2, h3, h4 {
            font-weight: 700;
            color: var(--primary-color);
        }
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color) !important;
        }
        .nav-link {
            color: var(--dark-text) !important;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 86, 179, 0.85), rgba(40, 167, 69, 0.85)), url('https://images.unsplash.com/photo-1516549655669-df6654e435de?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
            color: white;
            padding: 100px 0;
        }
        .hero-section h1 {
            color: white;
            font-size: 3.5rem;
        }
        .section-padding {
            padding: 80px 0;
        }
        .section-title {
            margin-bottom: 50px;
            position: relative;
        }
        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
        }
        .btn-primary {
            background-color: var(--primary-color);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .btn-primary:hover {
            background-color: #004494;
        }
        .btn-secondary {
            background-color: var(--secondary-color);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .btn-secondary:hover {
            background-color: #218838;
        }
        .icon-box {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        .team-member img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 50%;
            border: 5px solid var(--light-bg);
        }
        .contact-info i {
            color: var(--primary-color);
            margin-right: 10px;
        }
        footer {
            background-color: #2c3e50;
            color: white;
        }
        .friendlinks {
            background-color: var(--light-bg);
            padding: 40px 0;
        }
        .flink {
            display: inline-block;
            margin: 10px 15px;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        .flink:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }
        .news-article {
            border-left: 4px solid var(--secondary-color);
            padding-left: 20px;
            margin-bottom: 30px;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .section-padding {
                padding: 50px 0;
            }
        }
