:root {
  --bg-color: rgba(244, 246, 248, 0.85);
  --text-color: #1a1a1a;
  --accent-color: #0057b8;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

body {
  position: relative;
  color: var(--text-color);
}

video.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

.content {
  position: relative;
  z-index: 1;
  background-color: var(--bg-color);
  opacity: 0.8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  padding: 2rem;
}

header img {
  max-width: 200px;
  height: auto;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2rem;
  margin: 0.5rem 0;
}

p {
  max-width: 800px;
  margin: 0.5rem auto 1.5rem;
  line-height: 1.5;
}

a.cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--accent-color);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

a.cta:hover {
  background-color: #004599;
}

footer {
  position: absolute;
  bottom: 1rem;
  font-size: 0.875rem;
  color: #aaa;
  width: 100%;
  text-align: center;
  z-index: 1;
}

footer a{
  font-size: 0.875rem;
  color: #aaa;
}
