  /* ------------------------------
       Global Typography & Layout
    ------------------------------ */
    body {
      margin: 0;
      font-size: 18px;
      line-height: 1.6;
      font-family: system-ui, sans-serif;
      color: #222;
      background: #fff;
    }

    h1 {
      font-size: 40px;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    h2 {
      font-size: 28px;
      margin-bottom: 15px;
    }

    p {
      margin-bottom: 1em;
      max-width: 70ch;
    }

    /* ------------------------------
       Header
    ------------------------------ */
    .site-header {
      background: #ffffff;
      border-bottom: 1px solid #ddd;
      padding: 15px 20px;
    }

    .header-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .site-title {
      font-size: 1.5rem;
      font-weight: 600;
      letter-spacing: 0.3px;
    }

    header a.site-title:link, 
    header a.site-title:visited, 
    header a.site-title:hover, 
    header a.site-title:active { 
      text-decoration: none; 
      color: rgba(0,0,0,0.9); 
    }


    /* NAV WRAPPER */
    .site-nav {
    background: #fff;
    }

    /* TOP-LEVEL LIST */
    .site-nav > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    }

    @media (max-width: 600px) {
      nav ul {
        position: absolute;
        top: 60px; /* height of your header */
        left: 0;
        right: 0;
        background: #fff; /* or your header color */
        max-height: 80vh;
        overflow-y: auto;
        padding: 0;
        margin: 0;
        z-index: 1000;
      }

  nav ul li a {
    padding: 0.6rem 1rem;
    display: block;
  }
}

    /* TOP-LEVEL ITEMS */
    .site-nav > ul > li {
    position: relative;
    display: inline-block;
    }

    /* TOP-LEVEL LINKS */
    .site-nav a {
    text-decoration: none;
    color: #000;
    padding: 12px 8px;
    display: block;
    font-size: 18px;
    }

    /* SUBMENU (HIDDEN BY DEFAULT) */
    .submenu {
    display: none;
    position: absolute;
    top: 100%;      /* directly below parent */
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    min-width: 180px;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 9999;
    }

    /* SUBMENU ITEMS */
    .submenu li a {
    padding: 10px 12px;
    white-space: nowrap;
    }

    .submenu li a:hover {
    background: #eee;
    }

    /* SHOW SUBMENU ON HOVER */
    .site-nav > ul > li:hover > .submenu {
    display: block;
    }

    /* ------------------------------
       Hero Section
    ------------------------------ */
    .hero {
      background:
        linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
        url('/images/hero-bg.jpg') center/cover no-repeat;
      padding: 60px 20px;
      color: #fff;
    }

    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      gap: 40px;
    }

    .hero-text {
      text-align: center;
    }

    .hero-media {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
    }

    .hero-image {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .hero-cards {
      display: grid;
      gap: 20px;
    }
    /* Base card */
    .card {
      padding: 20px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.9);
      color: #000;
    }

    /* Color variants */
    .card-green { background: rgba(131, 177, 58, 1); color: rgba(255,255,255,0.9); }
    .card-green .button { background: rgba(255,255,255,0.9); color: rgba(131, 177, 58, 1);}
    .card-green .button:hover {background: #e6e6e6;}
    .card-green > div > p {
      color: rgb(70,30,9);
    }
   
    .card-gray  { background: #6d6d6d; color: rgba(255,255,255,0.9); }
    .card-gray .button {background: rgba(255,255,255,0.9); color: #6d6d6d;}
    .card-gray .button:hover { background: #333; }
  
    .card-blue  { background: rgb(57,142,181); color: rgba(0,0,0,0.9); }
    .card-blue .button {background: rgba(0,0,0,0.9); color: rgb(57,142,181);}
    .card-blue .button:hover { background: #333; }
  

    /* Split layout */
    .card-split {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 20px;
      align-items: center;
    }
    
    .card-split-even {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      align-items: center;
    }

    /* Image styling */
    .card-image img {
      width: 100%;
      height: auto;
      border-radius: 6px;
    }

    /* Responsive stacking */
    @media (max-width: 700px) {
      .card-split {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 800px) {
      .hero-media {
        grid-template-columns: 1fr;
      }
    }

    /* ------------------------------
       Content Blocks
    ------------------------------ */
    .content-block {
      max-width: 800px;
      margin: 60px auto;
      padding: 0 20px;
    }

    .announcement-list {
      font-size: 18px;
      line-height: 1.6;
      margin-left: 20px;
    }

    .button {
      display: inline-block;
      padding: 10px 18px;
      border-radius: 6px;
      text-decoration: none;
      font-size: 18px;
      font-weight: 600;
    }

    .button:hover {
      background: #1f4a88;
    }


    .contact-form {
      max-width: 500px;   /* or 480, 520, whatever feels right */
      margin: 0 auto;     /* centers the form inside the card */
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .contact-form label {
      font-weight: 600;
    }

    .contact-form input,
    .contact-form textarea {
      padding: 0.5rem;
      border: 1px solid #ccc;
      border-radius: 4px;
      font: inherit;
    }

    .contact-form .button {
      margin-top: 0.5rem;
      padding: 0.6rem 1.2rem;
      color: rgba(0,0,0,0.9); 
      background: rgb(57,142,181);
      border-radius: 4px;
      cursor: pointer;
      font-weight: 600;
    }

    .contact-form .button:hover {
      background-color: #2F7A99;
    }

.content div {
  max-width: 700px;   /* or 650, 720 — whatever feels right */
  margin: 0 auto;
}


    /* ------------------------------
       Footer
    ------------------------------ */
    .site-footer {
      background: #f5f5f5;
      padding: 40px 20px;
      border-top: 1px solid #ddd;
    }

    .footer-inner {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      gap: 20px;
      align-items: center;
    }

    .pcusa-seal {
      width: 70px;
      height: auto;
    }

    .footer-text {
      font-size: 18px;
      line-height: 1.6;
    }
  