
:root {
    --header-logo-color: #059669;
    --header-text-color: #1a1a1a;
    --header-accent: #8b1a1a;
    --header-hover: #b03d3d;
    --primary: #059669;
    --header-height: 70px;
}

.header-unified {
    transition: all 0.3s ease;
}

.header-unified {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 255, 0.95) 50%, rgba(255, 250, 240, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: none !important;
    box-shadow: none !important;
    height: var(--header-height, 80px);
}

.header-unified .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.25rem !important;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    box-sizing: border-box !important;
}

.main-content {
    padding-top: var(--header-height, 80px);
}
