* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #111;
  color: #fff;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  position: fixed;
  width: 100%;
  top: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo h1 {
  font-size: 1.4rem;
  letter-spacing: 1px;
}

nav a {
  margin-left: 20px;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.3s;
}

nav a:hover {
  color: #f1c40f;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 80px;
  background: url('https://images.unsplash.com/photo-1526772662000-3f88f10405ff?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
}

.hero h2 {
  font-size: 3rem;
  max-width: 800px;
}

.hero p {
  font-size: 1.2rem;
  margin: 15px 0 30px;
  max-width: 600px;
}

.btn {
  padding: 12px 28px;
  background: #f1c40f;
  color: #000;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #d4ac0d;
}

.about {
  padding: 80px 10%;
  text-align: center;
  background: #181818;
}

.about h3 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.about p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

footer {
  text-align: center;
  padding: 20px;
  background: #000;
  margin-top: 60px;
  font-size: 0.9rem;
}