
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f8;
  color: #333;
}

header {
  background: #111;
  color: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #facc15;
}

.hero {
  background: linear-gradient(to right, #0f172a, #1e293b);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  background: #facc15;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-primary:hover, .btn-secondary:hover {
  background: #eab308;
}

section {
  padding: 60px 0;
  text-align: center;
}

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

section p, ul li {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 20px auto;
}

ul {
  padding: 0;
  list-style: none;
}

footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}
