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

body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background: #1a1a2e;
  color: #fff;
  padding: 20px 0;
}

.site-header h1 {
  color: #ffb400;
  font-size: 24px;
  margin-bottom: 10px;
}

.site-header a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
}

.hero {
  background: #16213e;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  color: #ffb400;
  font-size: 32px;
  margin-bottom: 15px;
}

.btn-primary {
  display: inline-block;
  background: #ffb400;
  color: #1a1a2e;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
}

.services {
  padding: 40px 0;
}

.services h2 {
  color: #1a1a2e;
  margin-bottom: 20px;
}

.services ul {
  list-style: none;
}

.services li {
  margin-bottom: 10px;
}

.services a {
  color: #ffb400;
  text-decoration: none;
  font-weight: bold;
}

.site-footer {
  background: #1a1a2e;
  color: #fff;
  padding: 20px;
  text-align: center;
}