.gallery-section {
  padding: 40px 10%;
  text-align: center;
}

.gallery-section h2 {
  font-size: 22px;
  margin: 30px 0 20px;
  color: #145a32;
  border: 2px solid #145a32;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 5px;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.gallery-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  background: #fafafa;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 5px;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.gallery-item p {
  margin-top: 8px;
  font-size: 14px;
  font-weight: bold;
  color: #7d3c98;
}
