:root {
  --primary: #F26A3D;
  --secondary: #1F6F8B;
  --bg-dark: #0F1113;
  --accent-light: #FFD7C2;
  --text-main: #F4F4F4;
  --text-muted: #9AA4AD;
}

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

body {
  font-family: Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(15,17,19,0.85), rgba(15,17,19,0.4));
}

.hero-content {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 10%;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--primary);
}

.hero-content p {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: var(--accent-light);
}

.cta-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 12px 24px;
  background: var(--secondary);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: var(--primary);
}

.content {
  padding: 5rem 10%;
  background: #14181C;
}

.content h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

footer {
  text-align: center;
  padding: 2rem;
  background: #0A0C0D;
  color: var(--text-muted);
}
