header {
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    width: 100%;
}

.logo a {
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.logo img {
    max-width: 100%;
    height: auto;
    max-height: 50px;
    border-radius: 50%;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #ff6600;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-left: auto;
    justify-content: flex-end;
}

.social-icons img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    transition: transform 0.3s;
}

.social-icons a:hover img {
    transform: scale(1.1);
}

.consultation-btn {
    background-color: #ff6600;
    color: white;
    font-size: 12px;
    padding: 8px 16px;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    margin-right: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.3s;
    margin-left: 162px;
}

.consultation-btn:hover {
    background-color: #ff3300;
    transform: scale(1.05);
}

.consultation-btn:active {
    transform: scale(1);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #333;
    border-radius: 5px;
    transition: 0.3s;
}

@media (max-width: 1100px) {
    .nav {
        justify-content: space-between;
        padding: 5px 20px;
    }

    .logo img {
        max-height: 40px;
    }

    .nav-links {
        flex-direction: column;
        display: none;
        position: absolute;
        top: 55px;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: none;
        gap: 10px;
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links li a {
        padding: 15px 20px;
        font-size: 18px;
        text-align: center;
        width: 100%;
        display: block;
    }

    .social-icons {
        display: flex;
        gap: 15px;
        justify-content: center;
        padding: 15px 20px;
        width: 100%;
        margin-top: 15px;
    }

    .social-icons img {
        width: 30px;
        height: 30px;
    }

    .consultation-btn {
        width: 100%;
        text-align: center;
        margin-left: 0;
        font-size: 14px;
        margin-top: -5px;
    }

    .social-icons a {
        display: inline-block;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }
}
