
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      border-color: rgba(214, 219, 230, 1);
    }
    html {
      scroll-behavior: smooth;
    }
    body {
      font-family: 'SF Pro Display', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      color: #333;
      background-color: rgb(242, 246, 250);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    h1, h2, h3, h4, h5, h6 {
      font-weight: 600;
      letter-spacing: -0.025em;
    }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    /* Colors */
    :root {
      --ymca-blue: #007AFF;
      --ymca-red: #FF3B30;
      --ymca-green: #34C759;
      --ymca-teal: #5AC8FA;
      --ymca-navy: #0A84FF;
      --ymca-lightgray: #F2F2F7;
      --ymca-gray: #8E8E93;
    }
    
    /* Container */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }
    
    /* Utility classes */
    .flex { display: flex; }
    .flex-col { flex-direction: column; }
    .items-center { align-items: center; }
    .justify-between { justify-content: space-between; }
    .justify-center { justify-content: center; }
    .text-center { text-align: center; }
    .relative { position: relative; }
    .absolute { position: absolute; }
    .z-10 { z-index: 10; }
    .z-50 { z-index: 50; }
    .hidden { display: none; }
    .transition { transition: all 0.3s ease; }
    .rounded-full { border-radius: 9999px; }
    .rounded-xl { border-radius: 0.75rem; }
    .rounded-2xl { border-radius: 1rem; }
    .shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
    .shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
    .shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
    .overflow-hidden { overflow: hidden; }
    .inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
    
    /* Components */
    .glass-card {
      background-color: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    }
    
    .btn-primary {
      background-color: var(--ymca-blue);
      color: white;
      padding: 0.75rem 1.5rem;
      border-radius: 9999px;
      font-weight: 500;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      display: inline-block;
      text-decoration: none;
    }
    .btn-primary:hover {
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      background-color: #0062cc;
    }
    .btn-primary:active { transform: scale(0.95); }
    
    .btn-secondary {
      background-color: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(4px);
      color: var(--ymca-blue);
      padding: 0.75rem 1.5rem;
      border-radius: 9999px;
      font-weight: 500;
      transition: all 0.3s ease;
      border: 1px solid rgba(0, 122, 255, 0.2);
      cursor: pointer;
      display: inline-block;
      text-decoration: none;
    }
    .btn-secondary:hover { background-color: rgba(0, 122, 255, 0.1); }
    .btn-secondary:active { transform: scale(0.95); }
    
    .section-padding { padding: 4rem 0; }
    
    .ymca-image {
      border-radius: 1rem;
      object-fit: cover;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      transition: all 0.5s ease;
    }
    .ymca-image:hover {
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }
    
    .nav-link {
      position: relative;
      padding: 0.5rem 0.75rem;
      transition: all 0.3s ease;
      color: #333;
      text-decoration: none;
    }
    .nav-link:hover { color: var(--ymca-blue); }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      height: 2px;
      width: 0;
      background-color: var(--ymca-blue);
      transition: all 0.3s ease;
    }
    .nav-link:hover::after { width: 100%; }
    
    .section-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 2rem;
      display: inline-block;
      position: relative;
    }
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -0.5rem;
      left: 50%;
      transform: translateX(-50%);
      height: 4px;
      width: 3rem;
      background-color: var(--ymca-blue);
    }
    
    .section-subtitle {
      font-size: 1.125rem;
      color: #666;
      margin-bottom: 3rem;
      max-width: 48rem;
    }
    
    .card-hover {
      transition: all 0.3s ease;
    }
    .card-hover:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }
    
    /* Header/Navbar */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      transition: all 0.3s ease;
      padding: 0.75rem 1.5rem;
    }
    header.scrolled {
      background-color: rgba(255, 255, 255, 1);
      backdrop-filter: blur(10px);
      box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
      text-decoration: none;
    }
    .logo-text-primary {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--ymca-blue);
    }
    .logo-text-secondary {
      font-size: 1.125rem;
      font-weight: 500;
      color: #333;
    }
	.logo-img {
  max-height: 50px;
  margin-right: 10px;
}

    .nav-desktop {
      display: flex;
      align-items: center;
      gap: 2rem;
    }
    .menu-button {
      background: none;
      border: none;
      color: #333;
      cursor: pointer;
      padding: 0.5rem;
    }
    
    .mobile-nav {
      position: fixed;
      inset: 0;
      background-color: white;
      padding-top: 5rem;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      font-size: 1.125rem;
      transition: all 0.3s ease-in-out;
      opacity: 0;
      transform: translateX(100%);
      pointer-events: none;
    }
    .mobile-nav.open {
      opacity: 1;
      transform: translateX(0);
      pointer-events: auto;
    }
    .mobile-nav a {
      padding: 0.75rem 0;
      border-bottom: 1px solid #f1f1f1;
      color: #333;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .mobile-nav a:hover { color: var(--ymca-blue); }
    
    /* Hero section */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(to bottom, rgb(239, 246, 255), white);
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
      z-index: 0;
    }
    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.2;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(239, 246, 255, 0.7), white);
    }
    .hero-content {
      position: relative;
      z-index: 10;
      padding-top: 6rem;
    }
    .hero-badge {
      display: inline-block;
      padding: 0.375rem 1rem;
      border-radius: 9999px;
      background-color: #dbeafe;
      color: var(--ymca-blue);
      font-weight: 500;
      margin-bottom: 2rem;
      font-size: 0.875rem;
    }
    .hero-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }
    .hero-description {
      font-size: 1.125rem;
      color: #555;
      margin-bottom: 2.5rem;
      max-width: 48rem;
      margin-left: auto;
      margin-right: auto;
    }
    .hero-buttons {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      width: 100%;
      max-width: 20rem;
      margin: 0 auto;
    }
    .hero-features {
      margin-top: 6rem;
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      width: 100%;
    }
    .feature-card {
      padding: 1.5rem;
      text-align: center;
      border-radius: 1rem;
    }
    .feature-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    .feature-description {
      color: #666;
    }
    
    /* Programs section */
    .programs {
      background-color: #ebf5ff;
      padding: 4rem 0;
    }
    .program-tabs {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.75rem;
      margin-bottom: 3rem;
    }
    .program-tab {
      border-radius: 9999px;
      padding: 0.5rem 1.5rem;
      transition: all 0.3s ease;
    }
    .program-tab.active {
      background-color: var(--ymca-blue);
      color: white;
    }
    .program-tab:not(.active) {
      background-color: white;
      color: #333;
    }
    .program-tab:not(.active):hover {
      background-color: #e6f0ff;
    }
    .program-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .program-card {
      background-color: white;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }
    .program-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }
    .program-image {
      height: 14rem;
      overflow: hidden;
    }
    .program-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .program-image img:hover {
      transform: scale(1.05);
    }
    .program-content {
      padding: 1.5rem;
    }
    .program-category {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 0.25rem 0.5rem;
      border-radius: 9999px;
      margin-bottom: 1rem;
    }
    .category-youth {
      background-color: #d1fae5;
      color: #047857;
    }
    .category-adult {
      background-color: #dbeafe;
      color: #1e40af;
    }
    .category-family {
      background-color: #f3e8ff;
      color: #7e22ce;
    }
    .program-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    .program-description {
      color: #666;
      margin-bottom: 1rem;
    }
    .program-schedule {
      font-size: 0.875rem;
      color: #555;
      margin-bottom: 1rem;
    }
    
    /* Gallery section */
    .gallery {
      padding: 4rem 0;
      background-color: white;
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    .gallery-item {
      position: relative;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      border-radius: 0.75rem;
      cursor: pointer;
    }
    .gallery-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.5s ease;
    }
    .gallery-item:hover .gallery-image {
      transform: scale(1.05);
    }
    .gallery-overlay {
      position: absolute;
      inset: 0;
      background-color: rgba(0, 0, 0, 0);
      transition: all 0.3s ease;
    }
    .gallery-item:hover .gallery-overlay {
      background-color: rgba(0, 0, 0, 0.2);
    }
    .gallery-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1rem;
      transform: translateY(100%);
      transition: all 0.3s ease;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    }
    .gallery-item:hover .gallery-caption {
      transform: translateY(0);
    }
    .gallery-category {
      font-size: 0.875rem;
      font-weight: 500;
      color: white;
    }
    
    .lightbox {
      position: fixed;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 100;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .lightbox.open {
      opacity: 1;
      pointer-events: auto;
    }
    .lightbox-image {
      max-width: 90%;
      max-height: 80vh;
      object-fit: contain;
    }
    .lightbox-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: none;
      border: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
    }
    .lightbox-prev, .lightbox-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.4);
      border: none;
      color: white;
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }
    .lightbox-prev { left: 1rem; }
    .lightbox-next { right: 1rem; }
    .lightbox-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1rem;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
      color: white;
    }
    /* Our Team Section */
.team {
  background-color: #f8f9fa;
  padding: 4rem 0;
  text-align: center;
}
.team-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.team-member {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 250px;
}
.team-photo {
  width: 200px;
  height: 250px;
  border-radius: 20px;
  object-fit: cover;
  margin-bottom: 1rem;
}
.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.team-position {
  font-size: 1rem;
  color: #555;
}
    /* Volunteer, About, and Donate Sections */
    .contact, .about, .donate {
      padding: 4rem 0;
    }
    .about { background-color: white; }
    .contact { background-color: #f8fafc; }
    .donate { background-color: #ebf5ff; }
    
    /* Footer */
    footer {
      background-color: #1e293b;
      color: white;
      padding: 4rem 0 2rem;
    }
    .footer-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-logo {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    .footer-address {
      margin-bottom: 1rem;
      color: #cbd5e1;
    }
    .footer-social {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }
    .footer-social a {
      width: 2.5rem;
      height: 2.5rem;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      transition: all 0.3s ease;
    }
    .footer-social a:hover { background-color: var(--ymca-blue); }
    .footer-links h3 {
      font-size: 1.125rem;
      margin-bottom: 1rem;
      font-weight: 600;
    }
    .footer-links ul { list-style: none; }
    .footer-links li { margin-bottom: 0.5rem; }
    .footer-links a {
      color: #cbd5e1;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .footer-links a:hover { color: white; }
    .footer-newsletter h3 {
      font-size: 1.125rem;
      margin-bottom: 1rem;
      font-weight: 600;
    }
    .footer-newsletter p {
      color: #cbd5e1;
      margin-bottom: 1rem;
    }
    .newsletter-form {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .newsletter-input {
      padding: 0.75rem 1rem;
      border-radius: 0.5rem;
      border: none;
      background-color: rgba(255, 255, 255, 0.1);
      color: white;
    }
    .newsletter-input::placeholder { color: #94a3b8; }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      margin-top: 3rem;
      padding-top: 1.5rem;
      text-align: center;
      font-size: 0.875rem;
      color: #94a3b8;
    }
    
    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes slideIn {
      from { transform: translateX(-20px); opacity: 0; }
      to { transform: translateX(0); opacity: 1; }
    }
    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
      40% { transform: translateY(-10px); }
      60% { transform: translateY(-5px); }
    }
    .animate-fade-in { animation: fadeIn 0.6s ease-out; }
    .animate-slide-in { animation: slideIn 0.6s ease-out; }
    
    /* Responsive */
    @media (min-width: 768px) {
      h1 { font-size: 3.5rem; }
      h2 { font-size: 2.5rem; }
      h3 { font-size: 1.75rem; }
      .hero-buttons { flex-direction: row; }
      .hero-features { grid-template-columns: repeat(3, 1fr); }
      .program-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-grid { grid-template-columns: repeat(3, 1fr); }
      .footer-content { grid-template-columns: 2fr 1fr 1fr 2fr; }
      .menu-button { display: none; }
      .nav-desktop { display: flex; }
    }
    @media (min-width: 1024px) {
      .program-grid { grid-template-columns: repeat(3, 1fr); }
      .gallery-grid { grid-template-columns: repeat(4, 1fr); }
    }
    @media (max-width: 767px) {
      .nav-desktop { display: none; }
      .container { padding: 0 1.5rem; }
    }