body {
  margin: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* About Section */
.about-Corporate {
  background: #f8f8f8;
  padding: 10px;
  text-align: left;
}

.about-Corporate h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: "sanvito-pro-display", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 50px;
}

.about-Corporate p {
  max-width: 1200px;
  margin: 0px;
  font-size: 18px;
  font-family: "dm-sans", sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* Gallery Section */
.gallery {
  padding: 4rem 0;
  background: #fff;
  text-align: center;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 2rem;
  }
}
