* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: Arial, sans-serif;
  width: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

header {
  background-color: #3B2352;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  flex-wrap: wrap;
}

.logo {
  max-height: none;
  width: auto;
  height: 120px;
}

.extra-large-logo {
  height: 120px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

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

.video-container {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slogan-text {
  position: absolute;
  bottom: 20%;
  left: 5%;
  color: white;
  font-size: 3.5rem;
  font-weight: 900;
  max-width: 90%;
  z-index: 2;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}

.cta.bottom-cta {
  position: absolute;
  bottom: 5%;
  left: 5%;
  background-color: #4F6638;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  z-index: 2;
  box-shadow: 3px 3px 6px rgba(0,0,0,0.6);
}

main, section {
  padding: 2rem;
  background: #f8f8f8;
}

footer {
  background-color: #3B2352;
  color: white;
  text-align: center;
  padding: 1rem;
}
