body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #fff;
}

header {
  background-color: #1a1a1a;
  padding: 20px 0;
  color: white;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

#hero {
  padding: 60px 20px;
  text-align: center;
}

.hero-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 24px;
}

.btn, .btn-small {
  background-color: #007bff;
  color: #fff;
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-block;
  margin-top: 16px;
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.btn:hover, .btn-small:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.service-card {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-card i {
  font-size: 32px;
  color: #007bff;
  margin-bottom: 12px;
  display: block;
}

footer {
  padding: 40px 0;
  text-align: center;
  color: #999;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: auto;
}

form input, form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.form-response {
  margin-top: 12px;
  font-size: 0.95rem;
  color: green;
}
