/* Reset some basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: #f5f7fa;
  color: #333;
}

/* Hero section styling */
.hero {
  position: relative;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

.hero-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero-text p {
  font-size: 1.25rem;
}

/* Section styling */
section {
  padding: 2rem 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.about {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.about h2,
.updates h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: #2c3e50;
}

.about p,
.updates p {
  font-size: 1rem;
  color: #555;
}

/* Footer styling */
footer {
  background-color: #2c3e50;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

footer p {
  font-size: 0.875rem;
}