* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

 body {
    background: linear-gradient(135deg, #091627 50%, #02111e 100%);
    color: #c7d5e0;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
            background: linear-gradient(90deg, #171a21 0%, #1b2838 100%);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #66c0f4;
            border-bottom-left-radius: 50px;
            border-bottom-right-radius: 50px;
        }
        
        .navbar-box {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            max-height: 10vh;
        }
        
        .logo h1 {
            color: #66c0f4;
            font-size: 28px;
            font-weight: 700;
            text-shadow: 0 0 10px rgba(102, 192, 244, 0.3);
            letter-spacing: 1px;
        }
        
        .menu nav ul {
            display: flex;
            list-style: none;
            align-items: center;
        }
        
        .menu nav ul li {
            margin-left: 25px;
            position: relative;
        }
        
        .menu nav ul li a {
            color: #c7d5e0;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 4px;
            transition: all 0.3s ease;
            display: block;
        }
        
        .menu nav ul li a:hover {
            background-color: rgba(102, 192, 244, 0.2);
            color: #66c0f4;
        }
        
        /* Dropdown Styles */
        .dropdown {
            position: relative;
        }
        
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #1b2838;
            min-width: 180px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
            border-radius: 4px;
            border: 1px solid #66c0f4;
            z-index: 1;
            top: 100%;
            left: 0;
            overflow: hidden;
        }
        
        .dropdown-content li {
            margin: 0;
        }
        
        .dropdown-content li a {
            padding: 12px 16px;
            border-bottom: 1px solid rgba(102, 192, 244, 0.1);
        }
        
        .dropdown-content li:last-child a {
            border-bottom: none;
        }
        
        .dropdown:hover .dropdown-content {
            display: block;
        }
        