body {
  background-color: white;
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
}

.gallery-container {
  width: 95%;
  margin: auto;
  padding: 20px;
  text-align: center;
  margin-top: 100px;
}

.gallery-title {
  font-size: 2rem;
  font-weight: bold;
  color: rgb(24, 128, 36);
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.gallery-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: rgb(24, 128, 36);
  margin: 8px auto 0;
  border-radius: 2px;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  max-width: 1200px;
  margin: auto;
}

.gallery-image {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease-in-out;
}

.gallery-image:hover {
  transform: scale(1.05);
}

.view-more-btn {
  margin-top: 15px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  background-color: rgb(24, 128, 36);
  color: white;
  cursor: pointer;
}

.view-more-btn:hover {
  background-color: rgb(19, 100, 29);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .gallery-grid {
    max-width: 100%;
  }
  .gallery-image {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    flex-direction: column;
    align-items: center;
  }
  .gallery-image {
    width: 90%;
    max-width: 280px;
  }
}
