body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f4f4f4;
  color: #333;
}

header {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

.services, .contact {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.card {
  background: white;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card button {
  background: #3498db;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  cursor: pointer;
  border-radius: 4px;
}

form {
  display: flex;
  flex-direction: column;
}

form input, form textarea {
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  background: #27ae60;
  color: white;
  border: none;
  padding: 0.75rem;
  cursor: pointer;
  border-radius: 4px;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #ecf0f1;
  font-size: 0.9rem;
}

.contact-header {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #333;
  text-align: center;
  word-break: break-word;
}

.contact-header a {
  color: #3498db;
  text-decoration: none;
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: bold;
}

@media (max-width: 480px) {
  .contact-header {
    font-size: 1.2rem;
  }

  .contact-header a {
    font-size: 1rem;
    word-break: break-word;
  }

  form input, form textarea, form button {
    font-size: 1rem;
  }
}

