/* =============================================================
   FaxSafe – Shared header styles
   Included in: landing-page, terms, privacy, web/home
   Single source of truth for header structure + logo + brand.
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');

/* ── Header structure ── */
.header-section {
    padding: 0 24px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 24px;
}

/* ── Logo + brand name ── */
.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.site-logo img {
    height: 36px;
    width: auto;
    border-radius: 8px;
}

.brand-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    line-height: 1;
}
