:root {
  --primary: #ed2224;
  --accent: #ffd109;
  --dark: #1a1a1a;
  --light: #fff9f0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}

.logo img { height: 65px; }

.nav-links a {
  margin: 0 18px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
}

.nav-links a:hover { color: var(--primary); }

.btn {
  padding: 12px 28px;
  background: var(--primary);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(237, 34, 36, 0.3);
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: var(--dark);
}

.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1584622781564-1d2a2f3f1f1b') center/cover;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
}

footer {
  background: var(--dark);
  color: #ddd;
  text-align: center;
  padding: 60px 20px 30px;
}