/* ... previous CSS remains the same until .section ... */

.section {
  padding: 4rem 0;
}

.section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary);
}

.section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

/* Contact Form Styles */
#contact-form {
  max-width: 600px;
  margin: 2rem auto 2rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-info {
  text-align: center;
  margin-top: 2rem;
  color: var(--gray);
}

/* Services Grid (unchanged) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--secondary);
}

/* Footer */
footer {
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    text-align: center;
  }

  nav {
    margin-top: 1rem;
  }

  nav a {
    margin: 0 0.8rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section {
    padding: 2.5rem 0;
  }
}