

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary-nav: #000000;
       --primary-dark: #161e4e;
      --primary-blue: #001b75;
      --accent-gold: #e7c16e;
      --accent-orange: #ff6b35;
      --light-gray: #f8fafc;
      --border-gray: #e2e8f0;
      --text-gray: #64748b;
      --text-dark: #324461;
      --gradient-primary: linear-gradient(135deg, #001b75 0%, #0a0e27 100%);
      --gradient-accent: linear-gradient(135deg, #e7c16e 0%, #ff6b35 100%);
    }

    body {
      font-family: 'PT Sans', sans-serif;
      line-height: 1.6;
      margin: 0;
    }

    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* Header Styles */
    .header {
      background: white;
      padding: 1rem 0;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      transition: box-shadow 0.3s ease;
    }

    .header.scrolled {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    }

    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 2rem;
    }

    .logo {
      width: 280px;
      height: auto;
      transition: transform 0.3s ease;
    }

    .logo:hover {
      transform: scale(1.02);
    }

    /* Desktop Navigation */
    .nav-desktop {
      display: flex;
      gap: 0.5rem;
      align-items: center;
    }

    .nav-link {
      color: var(--text-dark);
      text-decoration: none;
      font-weight: 500;
      padding: 0.75rem 1rem;
      border-radius: 8px;
      transition: all 0.3s ease;
      position: relative;
      font-size: 0.95rem;
    }

    .nav-link:hover {
      color: var(--primary-blue);
      background: rgba(231, 193, 110, 0.1);
    }

    .nav-link.active {
      color: var(--primary-blue);
      font-weight: 700;
      background: linear-gradient(135deg, rgba(231, 193, 110, 0.15), rgba(255, 107, 53, 0.1));
    }


    /* Dropdown Styles */
    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown > .nav-link::after {
      content: '▾';
      margin-left: 0.35rem;
      font-size: 0.8rem;
      transition: transform 0.3s ease;
    }

    .nav-dropdown:hover > .nav-link::after {
      transform: rotate(180deg);
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      top: calc(100% + 0.5rem);
      left: 0;
      background: white;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
      border-radius: 12px;
      min-width: 320px;
      padding: 0.75rem;
      opacity: 0;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      border: 1px solid var(--border-gray);
    }

    .nav-dropdown:hover .dropdown-menu {
      display: block;
      opacity: 1;
      transform: translateY(0);
    }

    .dropdown-item {
      display: block;
      padding: 0.85rem 1rem;
      color: var(--text-dark);
      text-decoration: none;
      transition: all 0.2s ease;
      border-radius: 8px;
      font-size: 0.92rem;
    }

    .dropdown-item:hover {
      background: linear-gradient(135deg, rgba(0, 27, 117, 0.08), rgba(231, 193, 110, 0.08));
      color: var(--primary-blue);
      transform: translateX(4px);
      padding-left: 1.25rem;
    }

    /* Mobile Toggle Button */
    .nav-toggle {
      display: none;
      background: var(--primary-blue);
      border: none;
      color: white;
      width: 44px;
      height: 44px;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .nav-toggle:hover {
      background: var(--primary-dark);
      transform: scale(1.05);
    }

    .nav-toggle:active {
      transform: scale(0.95);
    }

    .nav-toggle-icon {
      font-size: 1.5rem;
      transition: transform 0.3s ease;
      display: block;
    }

    .nav-toggle.active .nav-toggle-icon {
      transform: rotate(90deg);
    }

    /* Mobile Navigation */
    .nav-mobile {
      display: none;
      background: white;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }

    .nav-mobile.active {
      display: block;
      max-height: 600px;
      padding: 1rem 0;
    }

    .nav-mobile .nav-link {
      display: block;
      padding: 1rem 2rem;
      border-radius: 0;
      border-left: 3px solid transparent;
    }

    .nav-mobile .nav-link:hover,
    .nav-mobile .nav-link.active {
      background: var(--light-gray);
      border-left-color: var(--accent-gold);
    }

    /* Mobile Dropdown */
    .nav-dropdown-mobile {
      position: relative;
    }

    .nav-dropdown-mobile > .nav-link {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .nav-dropdown-mobile > .nav-link::after {
      content: '▾';
      font-size: 0.9rem;
      transition: transform 0.3s ease;
    }

    .nav-dropdown-mobile.active > .nav-link::after {
      transform: rotate(180deg);
    }

    .dropdown-menu-mobile {
      display: none;
      background: var(--light-gray);
      padding: 0.5rem 0;
    }

    .dropdown-menu-mobile.active {
      display: block;
    }

    .dropdown-menu-mobile .dropdown-item {
      padding: 0.75rem 3rem;
      font-size: 0.9rem;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .nav-desktop {
        gap: 0.25rem;
      }

      .nav-link {
        padding: 0.6rem 0.75rem;
        font-size: 0.9rem;
      }

      .dropdown-menu {
        min-width: 280px;
      }
    }

    @media (max-width: 768px) {
      .container {
        padding: 0 1.5rem;
      }

      .nav-desktop {
        display: none;
      }

      .nav-toggle {
        display: block;
      }

      .logo {
        width: 220px;
      }
    }

    @media (max-width: 480px) {
      .container {
        padding: 0 1rem;
      }

      .logo {
        width: 180px;
      }

      .nav-toggle {
        width: 40px;
        height: 40px;
      }

      .nav-toggle-icon {
        font-size: 1.3rem;
      }

      .nav-mobile .nav-link {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
      }

      .dropdown-menu-mobile .dropdown-item {
        padding: 0.65rem 2.5rem;
        font-size: 0.85rem;
      }
    }




/* Footer Styles (kept from original) */
    .footer {
      background: var(--primary-nav);
      color: rgba(255, 255, 255, 0.8);
      padding: 4rem 0 2rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-section h3 {
      color: white;
      font-size: 1.25rem;
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section ul li {
      margin-bottom: 0.75rem;
    }

    .footer-section a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-section a:hover {
      color: var(--accent-gold);
    }

    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .social-link {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      transition: all 0.3s;
    }

    .social-link:hover {
      transform: translateY(-3px);
    }

    .icon {
      min-width: 20px;
      width: 20px;
      height: 20px;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border-width: 0;
    }

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .footer {
    padding: 2rem 0 1rem;
  }
  .footer-grid {
    gap: 1.2rem;
  }
  .footer-section h3 {
    font-size: 1.1rem;
  }
  .footer-section p, .footer-section ul {
    font-size: 0.85rem;
  }
  .social-link {
    width: 28px;
    height: 28px;
  }
  .social-link svg {
    width: 14px;
    height: 14px;
  }
  .contact-item svg {
    width: 14px;
    height: 14px;
  }
  .footer-bottom {
    font-size: 0.8rem;
  }
}
