.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 80px;
}

.cta-button {
    background: var(--primary);
    color: var(--white) !important;
    padding: var(--space-sm) var(--space-lg);
    border-radius: 6px;
    transition: all 0.3s ease !important;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: black;
    text-decoration: none;
}

.logo img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: var(--space-xl);
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
}

.nav-links a:hover {
    color: var(--primary);
}

.language-switch {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--dark-gray);
    cursor: pointer;
    margin-right: var(--space-xl);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-gray);
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .header {
        height: auto;
    }
    
    .nav-container {
        flex-wrap: wrap;
        padding: var(--space-sm) var(--space-md);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: var(--space-md);
        padding: var(--space-md) 0;
        margin-top: var(--space-md);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        padding: var(--space-sm) 0;
    }
    
    .language-switch {
        margin-right: 0;
    }
    
    /* Animation for hamburger to X */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }
    
    .logo img {
        height: 24px;
    }
}
