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

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: #0f0f0f;
  color: #e0e0e0;
  line-height: 1.6;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #1a1a1a;
}

nav .logo {
  color: #4A9EFF;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}

nav ul { list-style: none; display: flex; gap: 1.5rem; }
nav ul a { color: #aaa; text-decoration: none; transition: color 0.2s; }
nav ul a:hover { color: #4A9EFF; }

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  padding: 2rem;
}

.hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.hero p { color: #888; max-width: 500px; margin-bottom: 2rem; }

#cta-btn {
  padding: 0.8rem 2rem;
  background: #4A9EFF;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
#cta-btn:hover { background: #3A8EEF; }

footer { text-align: center; padding: 2rem; color: #555; }

p {
/*border-radius:25px;*/
background-color:#ffffffa3;
}