* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.nav-header {
    background: #fff;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo .brand {
    font-size: 22px;
    font-weight: 800;
}

.logo .arrow {
    color: #f5a623;
    font-weight: 800;
}

.logo .sub {
    font-size: 14px;
    font-weight: 700;
}

/* MENU BUTTON */
.menu-btn {
    display: none;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
}

/* NAV LINKS */
.nav-menu {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-menu a,
.drop-btn {
    text-decoration: none;
    color: #000;
    font-size: 15px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-menu a.active {
    color: #1e3aff;
    font-weight: 600;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 30px;
    left: 0;
    background: #fff;
    min-width: 180px;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    padding: 10px 0;
}

.dropdown-content a {
    display: block;
    padding: 10px 15px;
}

.dropdown-content a:hover {
    background: #f5f5f5;
}

.dropdown.open .dropdown-content {
    display: block;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }

    .nav-menu {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        display: none;
        margin-top: 10px;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        padding-left: 15px;
    }
}
.logo {
    text-decoration: none;
    color: #000;
}

.logo img {
    display: block;
}

.logo .sub {
    padding-top:10px;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}
