    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: linear-gradient(135deg, #f4f7f4 0%, #e8f4e8 100%);
        color: #333;
        min-height: 100vh;
        line-height: 1.6;
        overflow-x: hidden;
    }
    
    /* Navigation Bar */
    .navbar {
        background-color: rgba(74, 124, 58, 0.98);
        padding: 0 15px;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 60px;
    }
    
    .nav-logo {
        height: 40px;
        padding: 5px;
        border-radius: 8px;
        background-color: #fff;
    }
    
    .nav-links {
        display: flex;
        gap: 2px;
    }
    
    .nav-link {
        color: white;
        text-decoration: none;
        padding: 8px 12px;
        border-radius: 6px;
        font-weight: 500;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 5px;
        position: relative;
        overflow: hidden;
        font-size: 0.9rem;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #d4ffc7;
        transition: width 0.3s ease;
    }
    
    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.15);
        transform: translateY(-1px);
    }
    
    .nav-link:hover::before {
        width: 100%;
    }
    
    .nav-link.active {
        background-color: rgba(255, 255, 255, 0.2);
    }
    
    .nav-link i {
        font-size: 0.9rem;
    }
    
    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        color: white;
        font-size: 1.3rem;
        cursor: pointer;
        padding: 8px;
    }
    
    .header {
        background: linear-gradient(to right, #4a7c3a, #5a9c46);
        padding: 40px 20px;
        text-align: center;
        color: white;
        position: relative;
        overflow: hidden;
    }
    
    .header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23418235' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.3;
    }
    
    .header-content {
        position: relative;
        z-index: 2;
        max-width: 1000px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .logo-container {
        margin-bottom: 20px;
        animation: float 6s ease-in-out infinite;
    }
    
    .logo {
        height: 100px;
        width: auto;
        filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
        border-radius: 8px;
        background-color: #fff;
        padding: 8px;
    }
    
    
    .quick-access {
        margin-top: 30px;
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .school-title {
        text-align: center;
        width: 100%;
    }
    
    .school-title h1 {
        margin: 0;
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: 0.3px;
        margin-bottom: 8px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        line-height: 1.3;
        padding: 0 10px;
    }
    
    .school-title p {
        font-size: 1rem;
        opacity: 0.9;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 10px;
    }
    
    .quick-link {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        padding: 10px 20px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .quick-link:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .main-container {
        max-width: 1000px;
        margin: 30px auto;
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }
 
    .narration {
        max-width: 900px;
        margin: 40px auto;
        padding: 0 20px;
    }
    
    .narration h2 {
        color: #4a7c3a;
        text-align: center;
        margin-bottom: 25px;
        font-size: 1.8rem;
        position: relative;
        padding-bottom: 10px;
    }
    
    .narration h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: #4a7c3a;
    }
    
    .narration-content {
        background-color: white;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
        margin-bottom: 30px;
        border-left: 5px solid #4a7c3a;
        animation: fadeIn 0.8s ease-out;
    }
    
    .narration-content p {
        margin-bottom: 15px;
        font-size: 1.05rem;
        color: #444;
    }
    
    .container {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        padding: 30px 20px 60px;
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .card {
        background: linear-gradient(145deg, #4a7c3a, #5a9c46);
        width: 320px;
        padding: 30px 25px;
        border-radius: 16px;
        text-align: center;
        box-shadow: 0 8px 20px rgba(74, 124, 58, 0.2);
        text-decoration: none;
        color: #ffffff;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    
    .card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(145deg, #5a9c46, #4a7c3a);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.4s ease;
    }
    
    .card:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 15px 30px rgba(74, 124, 58, 0.3);
    }
    
    .card:hover::before {
        opacity: 1;
    }
    
    .card::after {
        content: '';
        position: absolute;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        top: -50px;
        right: -50px;
        transition: all 0.5s ease;
    }
    
    .card:hover::after {
        transform: scale(3);
    }
    
    .card-icon {
        font-size: 2.8rem;
        margin-bottom: 20px;
        display: inline-block;
        transition: transform 0.4s ease;
    }
    
    .card:hover .card-icon {
        transform: scale(1.2) rotate(5deg);
    }
    
    .card h2 {
        margin: 0 0 15px;
        font-size: 1.6rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        position: relative;
        z-index: 2;
    }
    
    .card p {
        margin: 0;
        font-size: 1rem;
        opacity: 0.9;
        line-height: 1.5;
        position: relative;
        z-index: 2;
    }
    
    .card-arrow {
        display: inline-block;
        margin-top: 20px;
        font-size: 1.5rem;
        opacity: 0.8;
        transform: translateX(0);
        transition: transform 0.3s ease;
    }
    
    .card:hover .card-arrow {
        transform: translateX(5px);
    }
    
    .footer {
        background-color: #4a7c3a;
        color: white;
        text-align: center;
        padding: 25px 20px;
        margin-top: 40px;
        font-size: 0.95rem;
    }
    
    .footer-logo {
        height: 40px;
        margin-bottom: 15px;
        opacity: 0.9;
        border-radius: 8px;
        background-color: #fff;
    }
    
    .footer-content {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .footer a {
        color: #d4ffc7;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .footer a:hover {
        color: white;
        text-decoration: underline;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }
    
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
    
    @media (max-width: 768px) {
        .mobile-menu-btn {
            display: block;
        }
        
        .nav-links {
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            background-color: rgba(74, 124, 58, 0.98);
            flex-direction: column;
            padding: 20px;
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .nav-links.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        
        .nav-link {
            justify-content: center;
            padding: 15px;
        }
        
        .logo {
            height: 80px;
        }
        
        .school-title h1 {
            font-size: 1.8rem;
        }
        
        .school-title p {
            font-size: 1rem;
        }
        
        .quick-access {
            flex-direction: column;
            align-items: center;
        }
        
        .quick-link {
            width: 100%;
            max-width: 250px;
            justify-content: center;
        }
        
        .card {
            width: 100%;
            max-width: 350px;
        }
        
        .container {
            gap: 20px;
        }
    }
    
    @media (max-width: 480px) {
        .logo {
            height: 70px;
        }
        
        .school-title h1 {
            font-size: 1.6rem;
        }
        
        .narration h2 {
            font-size: 1.5rem;
        }
    }