* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
  }

  html {
    scroll-behavior: smooth;
  }
  
  body {
    color: #0b2d5c;
    line-height: 1.6;
    background: #ffffff;
  }
  
  .container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
  }
  
  .navbar {
    background: #ffffff;
    border-bottom: 2px solid #c9a227;
    position: sticky;
    top: 0;
  }
  
  .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
  }
  
  .navbar a {
    margin-left: 20px;
    text-decoration: none;
    color: #0b2d5c;
    font-weight: 500;
  }
  
  .logo {
    height: 65px;
    width: 120px;
    object-fit: contain;
  }
  
  .hero {
    background: #0b2d5c;
    color: #ffffff;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 420px;
  }

  /* Video background styles */
  .hero-video,
  #hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    z-index: 0;
    transform: scale(1.06);
    filter: contrast(0.95) saturate(0.6) brightness(0.95);
    pointer-events: none;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(11,45,92,0.55), rgba(11,45,92,0.55));
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .tagline {
    margin: 8px 0 25px;
    font-size: 1.2rem;
  }
  
  .tagline-italic {
    font-style: italic;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .gray {
    background: #f7f9fc;
  }
  
  .dark {
    background: #0b2d5c;
    color: #ffffff;
  }
  
  .about {
    display: flex;
    gap: 40px;
    align-items: center;
  }
  
  .headshot {
    width: 220px;
    border-radius: 8px;
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
  }
  
  .card {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  }

  .testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .testimonial-quote {
    font-style: italic;
    color: #0b2d5c;
  }

  .testimonial-name {
    font-weight: 600;
    color: #c9a227;
  }
  
  .dark .card {
    background: rgba(255,255,255,0.08);
  }
  
  .btn {
    display: inline-block;
    background: #c9a227;
    color: #0b2d5c;
    padding: 12px 24px;
    margin-top: 15px;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.2s;
  }
  
  .btn:hover {
    background: #b28f1f;
  }
  
  .center {
    text-align: center;
  }
  
  .footer {
    text-align: center;
    padding: 25px;
    background: #0b2d5c;
    color: #ffffff;
    border-top: 2px solid #c9a227;
  }
  
  .section-intro {
    text-align: center;
    margin-bottom: 40px;
    color: #35507a;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
  }
  
  .logo-box {
    background: #ffffff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  
  .logo-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .logo-box img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
  }
  
  .logo-name {
    margin: 0;
    font-size: 0.9rem;
    color: #0b2d5c;
    text-align: center;
    font-weight: 500;
    line-height: 1.3;
  }
  
  .logo-disclaimer {
    text-align: center;
    margin-top: 30px;
    color: #6b7fa1;
    font-size: 0.9rem;
    font-style: italic;
  }

  .client-section {
    margin-bottom: 60px;
  }

  .client-section h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #0b2d5c;
  }

  #organizations h2 {
    text-align: center;
    text-decoration: underline;
    color: #0b2d5c;
  }

  @media (max-width: 768px) {
    .nav-inner {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }

    .navbar nav {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      gap: 8px 12px;
    }

    .logo {
      height: 50px;
      width: 90px;
    }

    .nav-inner {
      padding: 6px 0;
    }

    .navbar a {
      margin-left: 0;
      font-size: 0.85rem;
    }

    .about {
      flex-direction: column;
      text-align: center;
    }

    .headshot {
      width: 180px;
    }

    .hero {
      padding: 80px 0;
      min-height: 320px;
    }

    .hero-video,
    #hero-video {
      object-position: center 35%;
      transform: scale(1.12);
    }
  }
  
  .link {
    color: black;
    text-decoration: underline;
  }
