* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
html {
  height: 100%;
}
body,
html {
  background: #dad7d7;
}
section {
  width: 100%;
  min-height: 100vh;
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-image: url("/images/hero/hero.svg");
  background-repeat: repeat;
}
.hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  display: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  color: #daa520;
  text-align: center;
  font-family: Arial, sans-serif;
  text-shadow: 0 0 10px rgba(218,165,32,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-content img {
  position: relative;
  width: 100px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(218,165,32,0.7));
}
.hero-content h1 {
  font-size: 3rem;
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
.content {
  padding: 4rem 2rem;
  background-color: #dad7d7;
  text-align: center;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content div {
  margin: auto;
}
.content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #333;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-align: justify;
}
.content p {
  font-size: 1.2rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  text-align: justify;
  line-height: 1.6;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.footer {
  background-color: #260040;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.footer-brand-name {
  color: #daa520;
  font-family: "Quicksand", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-decoration: none;
}
.footer-brand-name:hover {
  text-decoration: dotted underline;
}
.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.footer-left {
  display: flex;
  flex-direction: column;
}
.footer-right {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.footer-privacy {
  margin-top: 1.5rem;
}
.footer p {
  font-size: 0.75rem;
  color: #666;
  margin: 0 0 0.3rem 0;
  font-family: Arial, sans-serif;
  font-style: normal;
}
.footer address {
  font-style: normal;
  margin-bottom: 1rem;
}
.footer p a {
  font-size: 0.75rem;
  color: #666;
  font-family: Arial, sans-serif;
  text-decoration: none;
}
.footer p a {
  position: relative;
}
.footer p a:hover {
  color: #daa520;
  text-decoration: dotted underline;
}
.footer p a::after {
  content: '\21E2';
  position: absolute;
  left: 100%;
  top: 0;
  padding-left: 0.3em;
  opacity: 0;
}
.footer p a:hover::after {
  opacity: 1;
}
@media (max-width: 600px) {
  .footer-columns {
    flex-direction: column;
    gap: 2rem;
  }
}
@media (min-width: 768px) {
  html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
  }
  section {
    scroll-snap-align: start;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-snap-type: none;
    scroll-behavior: auto;
  }
}
