body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    font-size: 16px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1fec04;
    padding: 15px 50px;
    flex-wrap: wrap;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 50%;
    object-fit: cover;
}

.company-name {
    font-size: 22px;
    font-weight: bold;
    color: #fffefe;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: #111;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: rgba(14, 13, 13, 0.8);
    transition: color 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: rgb(44, 241, 4);
}


/* --- Responsive Styles --- */

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 15px;
    }
    .nav-links a {
        background-color: rgba(0, 0, 0, 0.05);
        padding: 10px;
        font-size: 14px;
    }
    .navbar.active .nav-links {
        display: flex;
    }
    .company-name {
        font-size: 18px;
    }
    .logo {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    .company-name {
        font-size: 16px;
    }
    .logo {
        width: 35px;
        height: 35px;
    }
}

footer {
    background: #20f004;
    color: white;
    text-align: center;
}