.acmoney-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(30, 58, 138, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.acmoney-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.acmoney-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.acmoney-logo-image {
    width: 60px;
    height: 60px;
    background-image: url('../img/company-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    flex-shrink: 0;
}

.acmoney-logo-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.acmoney-nav {
    display: flex;
    align-items: center;
}

.acmoney-nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.acmoney-nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    position: relative;
}

.acmoney-nav-link:hover,
.acmoney-nav-link.active {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

.acmoney-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #fbbf24;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.acmoney-nav-link:hover::after,
.acmoney-nav-link.active::after {
    width: 80%;
}

.acmoney-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
}

.acmoney-mobile-menu span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.acmoney-mobile-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.acmoney-mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.acmoney-mobile-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .acmoney-header-container {
        padding: 0 2rem;
        height: 70px;
    }
    
    .acmoney-logo {
        gap: 0.75rem;
    }
    
    .acmoney-logo-image {
        width: 50px;
        height: 50px;
    }
    
    .acmoney-logo-text {
        font-size: 1.25rem;
    }
    
    .acmoney-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(30, 58, 138, 0.98);
        backdrop-filter: blur(10px);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .acmoney-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .acmoney-nav-list {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }
    
    .acmoney-nav-link {
        display: block;
        padding: 1rem 2rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .acmoney-nav-link::after {
        display: none;
    }
    
    .acmoney-mobile-menu {
        display: flex;
    }
} 