* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f9f9f9;
  color: #222;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

header {
  text-align: center;
  padding: 80px 20px 40px;
}

header h1 {
  font-size: 2.8rem;
  color: #000;
  letter-spacing: 1px;
}

header p {
  font-size: 1.2rem;
  color: #555;
  margin-top: 10px;
}

main {
  width: 90%;
  max-width: 800px;
  text-align: center;
  line-height: 1.7;
}

section {
  margin: 50px 0;
}

h2, h3 {
  color: #000;
  margin-bottom: 10px;
}

p {
  color: #444;
  font-size: 1.05rem;
}

.cta button {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 15px;
}

.cta button:hover {
  background: #ffb700;
  color: #000;
}

footer {
  margin-top: auto;
  text-align: center;
  padding: 30px 0;
  color: #777;
  font-size: 0.9rem;
}
