.hero-banner {
  position: relative;
  height: 50vh; /* Reduced height */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 10px;
  animation: fadeInUp 1.5s ease-out;
}

.hero-banner h2 {
  font-size: 2.3rem;
  margin-bottom: 10px;
}

.hero-banner p {
  font-size: 1.1rem;
}

/* Simple fade-in animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Base styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  color: #333;
}

header {
  background-color: #0a1832;
  color: #f1faee;
  text-align: center;
  padding: 30px 20px;
  border-bottom: 4px solid #a8dadc;
}

nav {
  background-color: #2d4962;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 15px 10px;
}

nav a {
  color: #f1faee;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  transition: background 0.3s ease;
}

nav a:hover {
  background-color: #a8dadc;
  color: #1d3557;
  border-radius: 4px;
}

section {
  padding: 30px 20px;
  max-width: 960px;
  margin: auto;
}

footer {
  background-color: #0a1832;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  border-top: 4px solid #e9c46a;
}

h1 {
  margin: 0;
  font-size: 2.2em;
  color: #f1faee;
}

h2 {
  color: #264653;
  margin-top: 0;
}

a {
  color: #e76f51;
  text-decoration: none;
}

a:hover {
  text-decoration
}

img.feature {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

img.feature:hover {
  transform: scale(1.03);
}

card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-bottom: 30px;
  padding: 25px;
  transition: transform 0.2s ease-in-out;
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  margin-top: 0;
  color: #264653;
}

.card p {
  line-height: 1.6;
  color: #333;
}
