* {
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


#hero-img {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  object-position: center;
  display: block;
  margin-top: 75px; 
}

.about-small-groups {
  width: 100%;
  margin: 0;
  padding: 4rem 1rem; 
  background: #f9f9f9; 
}

.about {
  max-width: 800px;
  margin: 3rem auto;
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.about h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.about h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: red; 
  margin: 0.5rem auto 0;
  border-radius: 2px;
}


.about p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  max-width: 650px;
  margin: 0 auto;
}


.small-group-imgs {
  width: 100%;
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.small-group-imgs h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
}


.sg-imgs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: stretch;
}


.sg-img {
   width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  background: #f2f2f2;       
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.sg-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
  filter: saturate(1.05);
}


@media (max-width: 768px) {
  .sg-imgs {
    grid-template-columns: 1fr;
  }
}



@media (max-width: 768px) {
  #hero-img {
    height: 50vh;
  }

  .about h1 {
    font-size: 1.5rem;
  }

  .about p {
    font-size: 1rem;
  }
}
