a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  color: #111;
  line-height: 1.5;
}
/* NAVBAR */
.navbar {
  background: #0f172a;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 18px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 15px;
  font-size: 14px;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* PRICING */
.pricing {
  background: #f8fafc;
  padding: 60px 20px;
  text-align: center;
}

.pricing h2 {
  margin-bottom: 10px;
}

.pricing-intro {
  max-width: 700px;
  margin: 0 auto 30px auto;
  color: #444;
}

.pricing .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.pricing .card {
  background: white;
  border: 1px solid #e5e7eb;
  padding: 20px;
  border-radius: 10px;
}

.pricing-note {
  margin-top: 30px;
  font-size: 14px;
  color: #333;
}

/* HERO */
header {
  background: #0f172a;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 42px;
}

header p {
  margin-top: 10px;
  font-size: 18px;
  opacity: 0.9;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  background: #22c55e;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

/* SECTIONS */
section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* CARDS */
.card {
  border: 1px solid #e5e7eb;
  padding: 20px;
  border-radius: 10px;
  background: #fff;
}

/* INFO SECTION */
.info {
  background: #f8fafc;
}

/* CONTACT */
.contact {
  background: #0f172a;
  color: white;
  text-align: center;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

form {
  max-width: 500px;
  margin: auto;
}