
        /* Modern Color Scheme */
        :root {
            --primary: #005f73;
            --secondary: #0a9396;
            --accent: #ee9b00;
            --light: #e9d8a6;
            --dark: #001219;
            --white: #ffffff;
            --gray: #f8f9fa;
        }
        
        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--gray);
            color: var(--dark);
            line-height: 1.6;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        section {
            padding: 60px 0;
        }
        
        h1, h2, h3, h4 {
            margin-bottom: 1rem;
            color: var(--primary);
        }
        
        p {
            margin-bottom: 1rem;
        }
        
        a {
            text-decoration: none;
            color: var(--secondary);
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: var(--accent);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: var(--accent);
            color: var(--white);
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 60px;
            margin-right: 15px;
        }
        
        .logo-text h1 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 0;
        }
        
        .logo-text p {
            font-size: 0.8rem;
            color: var(--secondary);
            margin-bottom: 0;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
            position: relative;
        }
        
        nav ul li a {
            color: var(--dark);
            font-weight: 500;
            padding: 5px 0;
        }
        
        nav ul li a:hover {
            color: var(--accent);
        }
        
        nav ul li.active a {
            color: var(--accent);
            font-weight: 600;
        }
        
        nav ul li.active a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--accent);
        }
        
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--white);
            padding: 180px 0 100px;
            text-align: center;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
            margin-bottom: -50px;
        }
        
        .hero h2 {
            font-size: 2.8rem;
            margin-bottom: 30px;
            line-height: 1.2;
        }
        
        .hero .btn {
            margin-top: 20px;
            background-color: var(--accent);
            color: var(--white);
        }
        
        /* Vision Mission Section */
        .vision-mission {
            background-color: var(--white);
            position: relative;
            z-index: 1;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-header h2 {
            font-size: 2.2rem;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent);
        }
        
        .vm-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .vision-card, .mission-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-top: 5px solid var(--accent);
        }
        
        .mission-card {
            border-top-color: var(--secondary);
        }
        
        .vision-card:hover, .mission-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .vision-card h3, .mission-card h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        
        .mission-card ul {
            margin-top: 15px;
            padding-left: 20px;
        }
        
        .mission-card ul li {
            margin-bottom: 10px;
            position: relative;
        }
        
        .mission-card ul li::before {
            content: '✓';
            color: var(--secondary);
            font-weight: bold;
            margin-right: 10px;
        }
        
        /* Quick Links Section */
        .quick-links {
            background-color: var(--gray);
            text-align: center;
        }
        
        .links-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .link-card {
            background-color: var(--white);
            padding: 40px 20px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .link-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .link-card i {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 20px;
        }
        
        .link-card span {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary);
        }
        
        /* News Section */
        .news-events {
            background-color: var(--white);
        }
        
        .news-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .news-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .news-img {
            height: 200px;
            background-color: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 3rem;
        }
        
        .news-content {
            padding: 25px;
        }
        
        .news-date {
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .news-content h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }
        
        .read-more {
            display: inline-block;
            margin-top: 15px;
            font-weight: 600;
            color: var(--secondary);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 60px 0 20px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        
        .footer-col h4 {
            color: var(--white);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--accent);
        }
        
        .footer-col p, .footer-col a {
            color: #bdc3c7;
            margin-bottom: 15px;
            display: block;
        }
        
        .footer-col i {
            margin-right: 10px;
            color: var(--accent);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--accent);
            color: var(--white);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bdc3c7;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .vm-container, .links-container, .news-container, .footer-container {
                grid-template-columns: 1fr 1fr;
            }
            
            .hero h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 90px;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            }
            
            nav ul.show {
                display: flex;
            }
            
            nav ul li {
                margin: 0;
                padding: 10px 20px;
            }
            
            nav ul li.active a::after {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .hero {
                padding: 150px 0 80px;
                clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
            }
            
            .hero h2 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 576px) {
            .vm-container, .links-container, .news-container, .footer-container {
                grid-template-columns: 1fr;
            }
            
            .hero {
                padding: 120px 0 60px;
            }
            
            .logo img {
                height: 50px;
            }
            
            .logo-text h1 {
                font-size: 1.2rem;
            }
        }