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

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.3);
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffd700;
}

.cta-btn {
  text-decoration: none;
  padding: 0.5rem 1rem;
  background: #ffd700;
  color: #000;
  border-radius: 5px;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #ffae00;
}

/* Hero section */
.hero {
  text-align: center;
  margin: auto;
  padding: 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero h1 span {
  color: #ffd700;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-btn {
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  background: #ffd700;
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #ffae00;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.4);
  font-size: 0.9rem;
}

