:root {
  --color-bg: #ffffff;
  --color-text-light: #ffffff;
  --color-text-dark: #212121;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  background-color: var(--color-bg);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

section {
  width: 100%;
  min-height: 100vh;
}

.landing-wrapper {
  height: 100vh;
  position: relative;
}

.landing-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

h1, h2 {
  margin: 0;
  font-family: "benton-modern-display-compre", serif;
  font-weight: 300;
  font-style: italic;
  font-size: 240px;
  letter-spacing: -0.015em;
  color: var(--color-text-dark);
}

h2 {
  font-size: 64px;
  margin-bottom: 20px;
}

.landing-content h1 {
  z-index: 10;
}

.main-wrapper {
  padding: 5vh 0;
  width: 100%;
}

.container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.two-columns {
  display: flex;
  gap: 40px;
  width: 100%;
  align-items: flex-start;
}

.left-column {
  flex: 1;
  min-width: 0;
}

.right-column {
  flex: 1;
  min-width: 0;
}

.image-container {
  width: 100%;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

.text-content {
  width: 100%;

  display: flex;
  flex-direction: row;
  gap: 20px;
}

.text-content p {
  margin: 0 0 1.5em 0;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.text-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .two-columns {
    flex-direction: column;
    gap: 20px;
  }
  
  h1 {
    font-size: 120px;
  }
  
  h2 {
    font-size: 48px;
  }
  
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 80px;
  }
  
  h2 {
    font-size: 36px;
  }
}