* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #fff8e1;
  color: #333;
  line-height: 1.8;
  text-align: center;
  font-size: 18px;
}

.banner {
  background: linear-gradient(to right, #c62828, #e53935);
  color: white;
  padding: 60px 20px;
}

.banner h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.banner p {
  font-size: 20px;
  font-style: italic;
  opacity: 0.9;
}

nav {
  background-color: #2e7d32;
  padding: 15px;
}

nav a {
  color: white;
  margin: 0 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s;
}

nav a:hover,
nav a.active {
  color: #fbc02d;
}

section {
  padding: 50px 20px;
}

h2 {
  color: #c62828;
  margin-bottom: 30px;
  font-size: 30px;
}

.intro p {
  max-width: 850px;
  margin: auto;
  font-size: 20px;
}

.card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.card {
  background: white;
  width: 260px;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 12px;
}

.card h3 {
  margin-bottom: 12px;
  color: #2e7d32;
  font-size: 20px;
}

.card a {
  display: inline-block;
  padding: 10px 16px;
  background-color: #c62828;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.card a:hover {
  background-color: #b71c1c;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.gallery-container figure {
  width: 240px;
}

.gallery-container img {
  width: 100%;
  border-radius: 12px;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.gallery-container img:hover {
  transform: scale(1.05);
}

.gallery-container figcaption {
  margin-top: 8px;
  font-size: 16px;
  font-style: italic;
  color: #555;
}

.video-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.video-container video,
.video-container iframe {
  max-width: 100%;
  border: 2px solid #0066cc;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.intro-image {
  text-align: center;
  margin: 20px 0;
}

.intro-image img {
  max-width: 80%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.caption {
  font-style: italic;
  color: #555;
  margin-top: 8px;
}

.quote {
  background-color: #fbc02d;
  padding: 40px 20px;
  font-style: italic;
  font-size: 20px;
  color: #5d4037;
}

footer {
  background-color: #c62828;
  color: white;
  padding: 20px;
  margin-top: 40px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .card, .gallery-container figure {
    width: 90%;
  }

  .banner h1 {
    font-size: 28px;
  }

  body {
    font-size: 16px;
  }
}
.card img,
.gallery-container img {
  width: 160px;
  height: 110px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.gallery-container figure {
  width: 160px;
}

