.header {
    background-color: #f8f9fa;
    padding: 15px 20px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.navbar-menu {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}
.navbar-menu li {
    display: inline-block;
}
.navbar-menu a {
    text-decoration: none;
    color: #333;
    font-size: clamp(12px, 1.5vw, 16px);
    transition: font-size 0.2s ease, color 0.2s ease, background-color 0.2s ease;
    font-weight: 600;
    margin: 10px 10px;
    border-radius: 6px;
    white-space: nowrap;
    text-align: center;
    text-overflow: ellipsis;
    overflow: hidden;
}
.navbar-menu a:hover {
    background-color: #e0e0e0;
}
.boosty-button {
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    padding: 12px 20px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(255, 153, 0, 0.3);
    transition: all 0.3s ease-in-out;
    display: inline-block;
}
.boosty-button:hover {
    background: linear-gradient(135deg, #ff9900, #ff6600);
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(255, 102, 0, 0.5);
}
.menu-container {
    display: flex;
    align-items: center;
    gap: 25px;
}
.logo {
    margin-right: auto;
}
.logo img {
    height: 50px;
    width: auto;
}
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.burger-menu div {
    width: 30px;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
}
.mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 10px;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    background-color: #fff;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    z-index: 999;
    -webkit-backdrop-filter: blur(10px);
}
.mobile-menu a {
    padding: 10px;
    text-align: center;
    font-size: 18px;
    color: #333;
    text-decoration: none;
    display: block;
}
.mobile-menu a:hover {
    background-color: #e0e0e0;
}
.mobile-menu .boosty-button {
    display: block;
    padding: 12px 15px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: white;
    border-radius: 8px;
    box-shadow: none;
    margin: 10px;
    transition: all 0.3s ease-in-out;
}
.mobile-menu .boosty-button:hover {
    background: linear-gradient(135deg, #ff9900, #ff6600);
    transform: none;
    box-shadow: none;
}
.mobile-menu.active {
    display: flex;
}

@media (max-width: 1024px) {
    .navbar-menu {
        display: none;
    }
    .navbar-menu a {
        font-size: 14px;
        padding: 8px 10px;
    }
    .burger-menu {
        display: flex;
    }
    .menu-container {
        gap: 15px;
    }
    .menu-container .boosty-button {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }
    .burger-menu {
        display: flex;
    }
    .menu-container {
        flex-direction: column;
        gap: 0;
    }
    .menu-container .boosty-button {
        display: none !important;
    }

}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }
    .menu-container .boosty-button {
        display: none !important;
    }

}