/* style.css */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f7fb;
  color: #333;
}

header {
  background-color: #1a1a2e;
  padding: 20px;
  text-align: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

nav {
  background-color: #0f3460;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

nav a {
  color: #ffffff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  background-color: #16213e;
  padding: 40px 20px;
  text-align: center;
  color: #fff;
}

.hero h1 {
  margin-top: 0;
  font-size: 36px;
}

.cta-button {
  margin-top: 20px;
  background-color: #00b894;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background-color: #019875;
}

main {
  padding: 30px 20px;
  max-width: 900px;
  margin: auto;
  line-height: 1.7;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

footer {
  background-color: #1a1a2e;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}
