    body {
      background-color: #fff;
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    /* Background image with fade effect */
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background: url("pix/NY_State_Outline.jpg") no-repeat center top 50px;
      background-size: min(90%, 1200px) auto;
      opacity: 0.15;
      z-index: -1;
      transition: opacity 0.3s ease-in-out;
    }

    /* Wrapper for vertical centering */
    .content-wrapper {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    header {
      text-align: center;
      padding: 20px 10px;
      animation: fadeSlideUp 1s ease-out forwards;
    }

    header img {
      max-width: 300px;
      height: auto;
    }

    main {
      max-width: 1200px;
      margin: auto;
      padding: 20px;
    }

    .logo-row {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: clamp(15px, 4vw, 40px);
      margin: 40px 0;
    }

    .logo-row img {
      max-width: clamp(120px, 18vw, 200px);
      height: auto;
      border: none;
      transition: transform 0.2s ease-in-out;
    }

    .logo-row img:hover {
      transform: scale(1.05);
    }

    .meetings {
      text-align: center;
      margin: 40px auto;
      max-width: 800px;
    }

    .meetings a {
      display: block;
      margin: 10px 0;
      font-weight: bold;
      color: #307494;
      text-decoration: none;
      font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    }

    .meetings a:hover {
      text-decoration: underline;
    }

    footer {
      text-align: center;
      padding: 20px;
      font-size: 0.8rem;
      color: #555;
      animation: fadeSlideUp 1s ease-out 0.3s forwards;
      opacity: 0;
      transform: translateY(10px);
    }

    footer img {
      max-width: 250px;
      height: auto;
      margin-top: 20px;
    }

    /* Animation keyframes */
    @keyframes fadeSlideUp {
      from {
        opacity: 0;
        transform: translateY(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      body::before { opacity: 0.12; }
    }

    @media (max-width: 768px) {
      body::before {
        background-size: cover;
        background-position: center top;
        opacity: 0.10;
      }
      header img { max-width: 200px; }
      .logo-row img { max-width: 140px; }
    }

    @media (max-width: 480px) {
      main { padding: 15px; }
      .meetings a { font-size: 0.9rem; }
      body::before { opacity: 0.08; }
    }
