* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f4f9ff;
  color: #333;
  text-align: center;
  line-height: 1.7;
}

header {
  background: linear-gradient(120deg, #0078d7, #00bcd4);
  color: #fff;
  padding: 40px 20px;
}

h1 {
  font-size: 2.2rem;
}

.tagline {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-top: 5px;
}

.hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.content {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: justify;
}

h2 {
  color: #0078d7;
  text-align: center;
  margin-bottom: 15px;
}

.links {
  text-align: center;
  margin: 40px 0;
}

.btn {
  display: inline-block;
  background-color: #0078d7;
  color: #fff;
  text-decoration: none;
  margin: 10px;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn:hover {
  background-color: #005fa3;
  transform: translateY(-2px);
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 20px;
}

.gallery img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

footer {
  background: #0078d7;
  color: #fff;
  padding: 15px 10px;
  font-size: 0.9rem;
  margin-top: 30px;
}