body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background-color: #0f172a;
    color: white;
}

/* Navbar */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1e293b;
    padding: 15px 40px;
}

.navbar a {
    color: white;
    text-decoration: none;
}

/* Hero */

.hero {
    text-align: center;
    padding: 80px 20px;
}

.hero h2 {
    font-size: 40px;
}

/* Services */

.services {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    flex-wrap: wrap;
}

.card {
    background: #1e293b;
    padding: 25px;
    border-radius: 10px;
    width: 275px;
    text-align: center;
}

.card a {
    display: inline-block;
    margin-top: 10px;
    color: #38bdf8;
    text-decoration: none;
}

/* Footer */

footer {
    text-align: center;
    padding: 20px;
    background: #020617;
}

button {
  margin-top: 10px;
  padding: 10px;
  border: none;
  border-radius: 6px;
  background: #4da3ff;
  color: white;
  cursor: pointer;
}

button:hover {
  background: #357acc;
}

