   :root {
      --brand: #ffc20f;
      --brand-dark: #e0a90c;
      --blue: #1e3a8a;
      --slate-50: #f8fafc;
      --slate-100: #f1f5f9;
      --slate-200: #e2e8f0;
      --slate-300: #cbd5e1;
      --slate-600: #475569;
      --slate-700: #334155;
      --slate-900: #0f172a;
    }

    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      color: var(--slate-900);
    }
      
    /* Ribbon */
    .ribbon {
      background: linear-gradient(90deg, var(--brand), var(--brand-dark));
      color: #fff;
      text-align: center;
      padding: 8px 12px;
      font-size: 13px;
      font-weight: 600;
    }

    /* Header */
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(6px);
      border-bottom: 1px solid var(--slate-200);
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }
    .header-flex {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 0;
    }

    nav {
      display: flex;
      align-items: center;
    }
    nav a {
      margin-right: 40px;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      color: var(--blue);
      display: inline-block;
      white-space: nowrap;
    }
    nav a:hover {
      color: var(--blue);
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      padding: 8px 14px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: 0.2s;
    }
    .btn-yellow {
      background: var(--brand);
      color: var(--slate-900);
    }
    .btn-yellow:hover {
      background: var(--brand-dark);
    }

    /* Phone box */
    .phone-box {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .phone-label {
      font-size: 16px;
      font-weight: 700;
      color: var(--blue);
      margin: 0 0 4px 0;
    }
    .phone-number {
      background: var(--blue);
      color: #fff;
      font-size: 22px;
      font-weight: 700;
      padding: 8px 20px;
      border-radius: 6px;
      text-decoration: none;
      display: inline-block;
      transition: background 0.2s ease-in-out;
    }
    .phone-number:hover {
      background: #162d6b;
    }

    /* Show/hide by device */
    .desktop-only {
      display: block;
    }
    .mobile-only {
      display: none;
    }

    /* Mobile */
    .menu-btn {
      display: none;
      width: 40px;
      height: 40px;
      border-radius: 8px;
      border: 1px solid var(--slate-300);
      background: #fff;
      font-size: 20px;
      cursor: pointer;
    }
    #mnav {
      display: none;
      padding: 10px 30px;
    }
    #mnav nav {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    #mnav a {
      font-size: 15px;
      padding: 6px 0;
    }

    @media (max-width: 768px) {
      .desktop-nav {
        display: none;
      }
      .menu-btn {
        display: inline-block;
      }
      .logo-box img {
        height: 34px!important;
        width: auto;
      }
      .desktop-only {
        display: none;
      }
      .mobile-only {
        display: inline-flex;
        align-items: center;
      }
      .phone-label {
        font-size: 14px;
      }
      .phone-number {
        font-size: 18px;
        padding: 6px 16px;
      }
    }

    /* Dropdown */
    .dropdown {
      position: relative;
      display: inline-block;
    }
    .dropbtn {
      cursor: pointer;
    }
    .dropdown-content {
      display: none;
      position: absolute;
      background-color: #fff;
      min-width: 200px;
      box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
      z-index: 99;
      border-radius: 6px;
      padding: 8px 0;
    }
    .dropdown-content a {
      font-size: 16px;
      font-weight: 500;
      color: var(--slate-900);
      padding: 10px 16px;
      display: block;
      text-decoration: none;
    }
    .dropdown-content a:hover {
      background-color: var(--slate-100);
      color: #ffc20f;
    }
    .dropdown:hover .dropdown-content {
      display: block;
    }

    /* Mobile dropdown fix */
    #mnav .dropdown-content {
      position: static;
      box-shadow: none;
      background: none;
      padding-left: 10px;
      display: none;
    }
    #mnav .dropdown.open .dropdown-content {
      display: block;
    }

    /* Rotate arrow when open (mobile only) */
    #mnav .dropdown.open .dropbtn::after {
      content: "▲";
      margin-left: 5px;
      font-size: 12px;
    }
    #mnav .dropbtn::after {
      content: "▼";
      margin-left: 5px;
      font-size: 12px;
    }