/* GLOBAL */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f172a;
  color: white;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background: #0b1220;
}

.nav .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav img {
  height: 40px;
}

/* BUTTON */
.cta-button {
  background: #2563eb;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 6px;
}

.cta-button.large {
  padding: 15px 25px;
  font-size: 18px;
}

/* HERO */
.hero {
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 42px;
}

/* SERVICES */
.services {
  padding: 50px 20px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: #1e293b;
  padding: 20px;
  border-radius: 10px;
}

/* FORM */
.form-section {
  padding: 60px 20px;
  text-align: center;
}

form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, select, textarea {
  padding: 10px;
  border-radius: 5px;
  border: none;
}

button {
  padding: 12px;
  background: #22c55e;
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #0b1220;
  margin-top: 40px;
}
