/* General Body */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  color: #333;
  text-align: center;
}

/* Header */
header {
  background: #00796b;
  color: white;
  padding: 20px;
  font-size: 28px;
  font-weight: bold;
}

/* Section Title */
h2.section-title {
  margin: 20px 0;
  font-size: 24px;
  color: #004d40;
}

/* Gallery Layout */
.gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

/* Card Design */
.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 280px;
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.5);
}

/* Images inside card */
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
}

/* Card Text */
.card p {
  margin: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #444;
}

/* Footer */
footer {
  background: #00796b;
  color: white;
  padding: 15px;
  margin-top: 20px;
}

/* Footer Link */
footer a {
  color: #ffeb3b;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
}
