
    :root {
      --brand: #004080;
      --brand-dark: #003060;
      --bg: #f4f4f9;
      --card: #ffffff;
      --muted: #6b7280;
    }

    /* Reset */
    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
    /*  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial; */
      background: var(--bg);
      color: #111827;
    /*  line-height: 1.5;
      -webkit-font-smoothing: antialiased; */

      /* new style */  
      margin: 0;
      font-family: Arial, sans-serif;
    }


    /* Original header
        header.header {
        background-color: #004080;
        color: #fff;
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        }
  */

    /* Header */
    .header {
      background: var(--brand);
      color: #fff;
      padding: 16px 0;
    }

    .header .container {
     /* max-width: 1200px; */ /* Don't like the look here.*/
      margin: 0 auto;
      padding: 0 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .logo { height: 96px; }
    .nav ul { list-style: none; display: flex; gap: 14px; }
    .nav a { color: #fff; text-decoration: none; font-weight: 600; }
    .nav ul li .current{
      background-color: #717171;
      padding: 8px 12px;
      border-radius: 4px;
    }

    /* Layout: use CSS Grid for consistent equal-height columns */
    .main-layout {
      max-width: 1200px;
      margin: 20px auto;
      padding: 0 16px;
      display: grid;
      grid-template-columns: 30% 1fr; /* sidebar 30%, main 70% */
      gap: 20px;
      align-items: stretch; /* ensures grid items fill the row height */
    }

    /* Card style for both columns */
    .sidebar,
    .main-content {
      background: var(--card);
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 8px 20px rgba(2,6,23,0.06);
      display: flex;
      flex-direction: column;
      /* let grid determine height; children will stretch to fill */
      min-height: 120px;
    }

    .content-section {
        margin-bottom: 30px;
    }

     .content-section-fb {
        margin-bottom: 16px;
    }

    
    .sidebar-content{
        margin-bottom: 0px;
    }

    

    /* Helper: make a block fill remaining vertical space inside a column */
    .fill-vertical { flex: 1 1 auto; }

    h1,h2,h3 { color: var(--brand); margin-bottom: 4px; }
    p { color: var(--muted); margin-bottom: 12px; }

    .sidebar div p {
        color: #004080;
    }


    .hero {
    text-align: center;
    background: #e1eaff;
    padding: 30px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    }

    .hero-sidebar {
    text-align: center;
    padding-left: 12px;
    padding-right: 12px;
    background: #e1eaff;
    border-radius: 8px;
    
    }

    .fb-page {
        text-align: center;
        width: 100%;
        border-radius: 8px;
        overflow: hidden;
        
    }

    /* Footer */
    .footer {
     /* max-width: 1200px; */
      margin-top: 40px;
      padding: 16px;
      background: var(--brand);
      color: #fff;
      text-align: center;
      /* border-radius: 8px; */
    }

    /* Responsive — stack columns on small screens */
    @media (max-width: 768px) {
      .main-layout { grid-template-columns: 1fr; }
      .header .container { flex-direction: column; align-items: flex-start; gap: 12px; }
      .nav ul { flex-direction: column; gap: 10px; }
    }


    
/* Modified style.css with sidebar-cta, quick-facts, and button styles */

.sidebar-cta {
  background: #e1eaff;
  padding: 15px;
  border-radius: 6px;
  margin-top: 20px;
  margin-bottom: 20px;
  overflow:hidden;
}
.sidebar-cta h3 {
    margin-top: 0;
}

.sidebar-cta .btn {
  display: inline-block;
  background-color: #004080;
  color: #fff;
  padding: 8px 12px;
  margin: 5px 0;
  text-decoration: none;
  border-radius: 4px;
}

.sidebar-cta .btn.secondary {
  background-color: #5e5e5e;
}

.quick-facts {
  list-style: none;
  padding-left: 0;
}

.quick-facts li {
  margin-bottom: 5px;
}

.about-gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.about-gallery img {
  max-width: 48%;
  border-radius: 6px;
}

/* Responsive tweaks for About Us page */
@media (max-width: 768px) {
  .about-gallery img {
    max-width: 100%;
  }
}


/* Bio Tabs */
.bio-tabs {
  margin-top: 20px;
}
.tab-nav {
  list-style: none;
  display: flex;
  border-bottom: 2px solid #ccc;
  padding: 0;
  margin: 0 0 10px 0;
}
.tab-nav li {
  padding: 10px 15px;
  cursor: pointer;
  background: #ecf0f1;
  margin-right: 5px;
  border-radius: 5px 5px 0 0;
  transition: background 0.3s;
}
.tab-nav li:hover {
  background: #d0d7de;
}
.tab-nav li.active {
  background: #2c3e50;
  color: white;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.bio-photo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  float: left;
  margin: 0 15px 15px 0;
}

@media (max-width: 768px) {
  .tab-nav {
    flex-direction: column;
  }
  .bio-photo {
    float: none;
    display: block;
    margin: 0 auto 15px auto;
  }
}

/* Venmo donation block styles */
.venmo-donate {
  margin-top: 20px;
  padding: 15px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
}
.venmo-donate h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #333;
}
.venmo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
/*  font-weight: bold; */
  color: #008CFF; /* Venmo blue */
/*  font-size: 1em; */
}
.venmo-link:hover {
  text-decoration: underline;
}
.venmo-qr img {
  display: block;
  margin: 0 auto;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* Contact Page Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.contact-form label {
  font-weight: bold;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .g-recaptcha {
  margin-top: 10px;
}

.contact-form .btn {
  align-self: flex-start;
}

/* Add this block to style.css for form response styling */
#formResponse {
  margin-top: 15px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 1.1em;
  font-weight: bold;
}

#formResponse .success {
  background-color: #e6ffed;
  color: #2e7d32;
  border: 1px solid #2e7d32;
}

#formResponse .error {
  background-color: #ffebee;
  color: #c62828;
  border: 1px solid #c62828;
}

#formResponse .warning {
  background-color: #fff8e1;
  color: #ff8f00;
  border: 1px solid #ff8f00;
}
/* End of style.css */