/* ── Brand Tokens ─────────────────────────────────── */
:root {
    --wo-black: #000000;
    --wo-dark: #221f20;
    --wo-gray: #888888;
    --wo-gray-light: #c0c0c0;
    --wo-gold: #C5A55A;
    --wo-gold-dark: #a8893e;
    --wo-off-white: #f5f5f5;
    --wo-white: #ffffff;
    --wo-text: #1a1a1a;
    --wo-text-muted: #6b6b6b;
    --wo-border: #d9d9d9;
    --wo-radius: 6px;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--wo-off-white);
    color: var(--wo-text);
}

/* ── Header ──────────────────────────────────────── */
header {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--wo-dark);
    color: white;
    padding: 0 24px;
    box-sizing: border-box;
    border-bottom: 2px solid var(--wo-gold);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

header a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 0;
    margin: 0 14px;
    transition: color 0.15s ease;
    position: relative;
}

header a:hover {
    color: var(--wo-gold);
    text-decoration: none;
}

header a:focus-visible {
    outline: 2px solid var(--wo-gold);
    outline-offset: 4px;
}

header label {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin: 0 14px;
    display: inline;
    cursor: pointer;
    padding: 0;
    transition: color 0.15s ease;
}

header label:hover {
    color: var(--wo-gold);
    text-decoration: none;
}

#header-name a {
    padding: 10px 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

#header-name a:hover {
    color: inherit;
}

#header-links {
    display: flex;
    align-items: center;
    gap: 0;
}


/* ── Main Content ─────────────────────────────────── */
main {
    max-width: 1100px;
    margin: 32px auto;
    padding: 0 24px;
    background: none;
    border-radius: 0;
    box-shadow: none;
}

/* ── Footer ──────────────────────────────────────── */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--wo-dark);
    padding: 12px 24px;
    box-sizing: border-box;
    color: var(--wo-gray-light);
    border-top: 2px solid var(--wo-gold);
    font-size: 13px;
}

footer p {
    margin: 0;
    padding: 0;
}

.footer-left {
    display: flex;
    gap: 20px;
}

.footer-left a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
}
.footer-left a:hover {
    color: #fff;
    text-decoration: underline;
}

.tagline {
    text-align: right;
    font-size: 13px;
}

.nav-left {
    display: flex;
    gap: 20px; /* Add spacing between Products and Services */
}

.signin {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    white-space: nowrap;
}

.signin a {
    padding: 12px 16px;
}

.logo {
    flex-shrink: 0;
}

  .dropdown {
    margin-left: 20px;
  }
  
  .dropdown .dropbtn {
    cursor: pointer;
    font-size: 16px;  
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  }
 
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    color:#000;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 199;
  }
  
  .dropdown-content a {
    float: none;
    color:#000;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  
  .show {
    display: block;
  }