
body {
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fafafa;
  }

  .about-hero-image {
    width: 100%;
    overflow: hidden;
  }
  
  .hero-skyline-img {
    width: 100%;
    max-height: 400px;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .about-top-section {
    background-color: white;
    padding: 3rem 1rem;
    text-align: center;
  }
  
  .about-top-section .section-title {
    color: #7b1e1e; /* Maroon brand color */
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .about-top-section .section-subtitle {
    color: #222;
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .about-top-section .section-paragraph {
    color: #222;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  
  
  .about-hero {
    background-color: #7b1e1e;
    color: white;
    padding: 3rem 1rem 2rem;
    text-align: center;
  }
  
  .about-hero h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .about-hero p {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .about-body {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
  }
  
  .about-section,
  .mission-section, 
  .vision-section, 
  .core-values-section {
    margin-bottom: 2.5rem;
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }
  
  .about-section h2,
  .mission-section h2, 
  .vision-section h2, 
  .core-values-section h2 {
    color: #7b1e1e;
    margin-bottom: 0.75rem;
  }
  
  .about-section p,
  .mission-section p, 
  .vision-section p, 
  .core-values-section p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  
  .founder-message {
    border-left: 4px solid #7b1e1e;
    background-color: #fff7f7;
  }

  .cta-row {
    display:flex; gap:.75rem; flex-wrap:wrap; align-items:center; margin-top:.35rem;
  }
  .btn-primary {
    background:#7A3B4E; color:#fff; border:none; border-radius:8px; padding:.7rem 1rem; font-weight:800;
    cursor:pointer; text-decoration:none; display:inline-block;
  }
  .btn-primary:hover{ background:#6b3343; }
  .btn-outline {
    background:#fff; color:#7A3B4E; border:2px solid #7A3B4E; border-radius:8px; padding:.6rem .9rem;
    font-weight:800; text-decoration:none; display:inline-block;
  }



  /* Desktop */
@media (min-width: 1200px) {
  .hero-skyline-img {
    max-height: 680px;     /* slightly taller on ultra-wide screens */
  }
}

/* Tablet */
@media (max-width: 980px) {

  .hero-skyline-img {
    max-height: 380px;
  }
}


  
  @media (max-width: 600px) {
    .about-hero h1 {
      font-size: 1.6rem;
    }
  
    .about-section,.mission-section, .vision-section p {
      font-size: 0.95rem;
    }
  }

    /* Mobile */
    @media (max-width: 520px) {
      .hero-skyline-img {
        max-height: 280px;
      }
    }
    
  