.site-header {
    margin-bottom: 18px;
}

.header-container {
    background: #ffffff;
    border: 1px solid #e5edf3;
    border-radius: 24px;
    padding: 16px 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    box-shadow: 0 18px 40px rgba(3, 111, 186, 0.10);
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    display: block;
    height: 36px;
    width: auto;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.header-btn {
    min-height: 44px;
    padding: 0 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    text-decoration: none;
    font-size: 14px;
    font-weight: 700;

    transition: 0.2s ease;
}

.header-btn-primary {
    background: #036fba;
    color: #ffffff;
}

.header-btn-primary:hover {
    background: #025e9d;
}

.header-btn-secondary {
    background: #ffffff;
    color: #036fba;
    border: 1px solid rgba(3,111,186,0.22);
}

.header-btn-secondary:hover {
    background: rgba(3,111,186,0.05);
}

@media (max-width: 640px) {

    .header-container {
        flex-direction: column;
        gap: 16px;
        padding: 18px;
    }

    .header-logo img {
        height: 46px;
    }

    .header-actions {
        width: 100%;
        flex-direction: column;
    }

    .header-btn {
        width: 100%;
    }
}

.site-footer {
    text-align: center;
    margin-top: 24px;
    padding: 20px 0;
    color: #6b7280;
    font-size: 13px;
}
.header-user {
    min-height: 44px;
    padding: 0 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(3,111,186,0.08);

    color: #036fba;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: 0.2s ease;
}

.header-user:hover {
    background: rgba(3,111,186,0.14);
}

@media (max-width: 640px) {

    .header-user {
        width: 100%;
    }

}