body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.navbar {
    background-color: #49D1D9; 
    padding: 14px 0;
    display: flex;
    justify-content: center;
}

.navbar .container {
    width: 90%;
    max-width: 1200px;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center;
    margin: 0 auto;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-family: 'Narnoor', serif;
    font-weight: 700;
    font-size: 20px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #1a237e;
}

@media (max-width: 768px) {
    .navbar .container {
        justify-content: center;
    }

    .nav-links li {
        margin: 0 10px;
    }
}