/* Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #0056a3;
            --secondary: #003366;
            --accent: #ff6600;
            --light: #f8f9fa;
            --dark: #343a40;
            --success: #28a745;
            --gray: #6c757d;
        }

        body {
            background-color: #f0f2f5;
            color: #333;
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles */
        header {
            background: linear-gradient(to right, var(--secondary), var(--primary));
            color: white;
            padding: 10px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
        }

        .logo-section {
            display: flex;
            align-items: center;
        }

        .logo {
            height: 70px;
            margin-right: 15px;
        }

        .site-title h1 {
            font-size: 1.8rem;
            font-weight: 700;
        }

        .site-title h2 {
            font-size: 1.1rem;
            font-weight: 400;
            margin-top: 5px;
        }

        .header-search {
            flex: 1;
            max-width: 400px;
            margin: 0 20px;
        }

        .search-box {
            display: flex;
        }

        .search-box input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }

        .search-box button {
            background: var(--accent);
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
        }

        .header-links {
            display: flex;
        }

        .header-links a {
            color: white;
            margin-left: 15px;
            text-decoration: none;
            font-size: 0.9rem;
        }

        /* Navigation */
        nav {
            background-color: var(--primary);
            padding: 0;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            padding: 15px 20px;
            display: block;
            font-weight: 500;
            transition: background 0.3s;
        }

        .nav-menu a:hover {
            background: rgba(255,255,255,0.1);
        }

        .nav-menu a i {
            margin-right: 8px;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background: white;
            min-width: 220px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            z-index: 100;
        }

        .dropdown-content a {
            color: var(--dark);
            padding: 12px 20px;
            border-bottom: 1px solid #eee;
        }

        .dropdown-content a:hover {
            background: #f8f9fa;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 86, 163, 0.8)), url('https://images.unsplash.com/photo-1606312619070-d48b4c652a52?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .btn {
            display: inline-block;
            padding: 12px 25px;
            background: var(--accent);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: background 0.3s;
        }

        .btn:hover {
            background: #e55d00;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid white;
            margin-left: 10px;
        }

        .btn-outline:hover {
            background: rgba(255,255,255,0.1);
        }

        /* Services Section */
        .services {
            padding: 60px 0;
            background: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: var(--secondary);
            position: relative;
            padding-bottom: 15px;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--accent);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .service-icon {
            background: var(--primary);
            color: white;
            text-align: center;
            padding: 25px 0;
            font-size: 2.5rem;
        }

        .service-content {
            padding: 25px;
        }

        .service-content h3 {
            color: var(--secondary);
            margin-bottom: 15px;
        }

        .service-content p {
            color: var(--gray);
            margin-bottom: 20px;
        }

        .service-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
        }

        .service-link i {
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .service-link:hover i {
            transform: translateX(5px);
        }

        /* News Section */
        .news {
            padding: 60px 0;
            background: #f8f9fa;
        }

        .news-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }

        .news-card {
            display: flex;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 20px;
        }

        .news-img {
            flex: 0 0 40%;
            background-size: cover;
            background-position: center;
        }

        .news-content {
            flex: 1;
            padding: 25px;
        }

        .news-date {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .news-content h3 {
            color: var(--secondary);
            margin-bottom: 15px;
        }

        .announcements {
            background: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .announcements h3 {
            color: var(--secondary);
            padding-bottom: 15px;
            margin-bottom: 20px;
            border-bottom: 2px solid #eee;
        }

        .announcement-item {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }

        .announcement-item:last-child {
            border-bottom: none;
        }

        .announcement-item h4 {
            color: var(--primary);
            margin-bottom: 5px;
        }

        /* Departments Section */
        .departments {
            padding: 60px 0;
            background: white;
        }

        .dept-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .dept-card {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s;
        }

        .dept-card:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
        }

        .dept-card:hover h3,
        .dept-card:hover p {
            color: white;
        }

        .dept-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .dept-card:hover i {
            color: white;
        }

        .dept-card h3 {
            color: var(--secondary);
            margin-bottom: 10px;
        }

        .dept-card p {
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* Quick Links */
        .quick-links {
            padding: 40px 0;
            background: var(--secondary);
            color: white;
        }

        .links-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .link-group h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .link-group h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--accent);
        }

        .link-group ul {
            list-style: none;
        }

        .link-group li {
            margin-bottom: 10px;
        }

        .link-group a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }

        .link-group a:hover {
            color: white;
            text-decoration: underline;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 40px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-contact h3 {
            margin-bottom: 20px;
        }

        .contact-info {
            margin-bottom: 15px;
        }

        .contact-info i {
            margin-right: 10px;
            color: var(--accent);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            transition: background 0.3s;
        }

        .social-links a:hover {
            background: var(--accent);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .news-container {
                grid-template-columns: 1fr;
            }
            
            .links-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                text-align: center;
            }
            
            .logo-section {
                margin-bottom: 15px;
            }
            
            .header-search {
                margin: 15px 0;
                max-width: 100%;
            }
            
            .nav-menu {
                flex-direction: column;
            }
            
            .nav-menu li {
                width: 100%;
            }
            
            .hero {
                padding: 50px 0;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            .links-container {
                grid-template-columns: 1fr;
            }
        }