.custom-header-a7555404 {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(246, 240, 228, 0.95);
    backdrop-filter: blur(10px);
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.custom-header-a7555404 .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.custom-header-a7555404 .logo-container img {
    max-height: 40px;
    width: auto;
}

.custom-header-a7555404 .logo-container h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.custom-header-a7555404 .menu-container ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.custom-header-a7555404 .menu-container a {
    text-decoration: none;
    color: #061d2b;
    font-weight: 500;
    transition: opacity 0.3s;
}

.custom-header-a7555404 .menu-container a:hover {
    opacity: 0.7;
}

.custom-header-a7555404 .header-btn {
    background-color: #042c43;
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.custom-header-a7555404 .header-btn:hover {
    background-color: #061d2b;
}

.custom-header-a7555404 .hamburger-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #061d2b;
}

.custom-header-a7555404 .mobile-menu-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #f6f0e4;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.custom-header-a7555404 .mobile-menu-dropdown.active {
    display: block;
}

.custom-header-a7555404 .mobile-menu-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.custom-header-a7555404 .mobile-menu-dropdown a {
    text-decoration: none;
    color: #061d2b;
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .custom-header-a7555404 .header-inner {
        padding: 15px 20px;
    }
    
    .custom-header-a7555404 .menu-container {
        display: none;
    }

    .custom-header-a7555404 .hamburger-btn {
        display: block;
        order: -1;
    }

    .custom-header-a7555404 .logo-container {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .custom-header-a7555404 .action-container {
        margin-left: auto;
    }
}