/* ===== Base ===== */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
}

/* ===== Header ===== */
header {
  background: #f8f8f8;
  padding: 80px 20px;
  text-align: center;
}

header h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.2rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Nav ===== */
nav {
  background: #ffffff;
  padding: 1rem 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #eee;
}

nav a {
  margin: 0 1rem;
  color: #333;
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  color: #0070f3;
}

/* ===== Sections ===== */
section {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

section:nth-of-type(even) {
  background-color: #f9f9f9;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: #111;
}

section p {
  max-width: 640px;
  margin: 0 auto 1.5rem;
}

/* ===== Services Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: #f5f5f5;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.service-card h3 {
  margin-top: 0;
}

/* ===== Call to Action / Contact Section ===== */
.cta {
  background: #111;
  color: #fff;
  padding: 30px 20px 50px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  margin-top: 40px; /* 👈 adds breathing room above */
}

.cta h2 {
  margin-top: 0;
  font-size: 2rem;
}

.cta p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

/* ===== Form Styling ===== */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

label {
  font-weight: 600;
}

input[type="text"],
input[type="email"],
textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
}

textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: #ccc;
}

/* Checkbox */
.checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

/* Submit Button */
.btn-primary {
  background: #0070f3;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #005dc1;
}

/* ===== Trust Marker (Optional) ===== */
.trust {
  font-size: 0.95rem;
  color: #888;
  text-align: center;
  margin-top: 20px;
}

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #888;
}

/* ===== Responsive ===== */
@media (max-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  header h1 {
    font-size: 2.2rem;
  }

  section h2 {
    font-size: 1.5rem;
  }
}
