body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

nav {
  background-color: #f0f0f0;
  padding: 1em;
  display: flex;
  gap: 1em;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

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

main {
  padding: 2em;
}

p {
  margin-bottom: 1em;
  line-height: 1.5;
}

.hero-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  background: linear-gradient(to bottom right, #f0f4f8, #ffffff);
  padding: 2em;
}

.hero-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: white;
  padding: 2.5em;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  max-width: 1000px;
  width: 100%;
  gap: 2em;
}

.hero-img {
  max-width: 320px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.hero-info {
  flex: 1;
}

.hero-info h1 {
  font-size: 2em;
  margin-bottom: 0.3em;
}

.hero-info h2 {
  font-weight: normal;
  font-size: 1.2em;
  margin-bottom: 0.5em;
  color: #555;
}

.hero-info p {
  font-size: 1.1em;
  color: #444;
}

/* Fullscreen background video */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

/* Overlay content */
.overlay {
  position: relative;
  height: 100vh;
  width: 100%;
  color: #003366;
  font-family: Arial, sans-serif;
}

/* Center text */
.center-text {
  position: absolute;
  top: 30%;
  width: 100%;
  text-align: center;
}

.center-text h1, .center-text h2 {
  margin: 0.3em 0;
}

/* Navigation */
.nav-bar {
  display: flex;
  justify-content: center;
  gap: 2em;
  padding: 1em;
  font-weight: bold;
}

.nav-bar a {
  text-decoration: none;
  color: #003366;
  background-color: rgba(255,255,255,0.85);
  padding: 0.5em 1em;
  border-radius: 8px;
}

/* Email bottom right */
.email {
  position: absolute;
  bottom: 2em;
  right: 2em;
  font-size: 1rem;
  color: #003366;
  background-color: rgba(255,255,255,0.85);
  padding: 0.3em 0.8em;
  border-radius: 8px;
}

/* Footer */
.footer {
  position: absolute;
  bottom: 0.5em;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  color: #003366;
  background-color: rgba(255,255,255,0.75);
  padding: 0.5em 0;
}
