/*
Theme Name: MyTheme
...
*/

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header, footer {
  background: #333;
  color: #fff;
  padding: 1rem;
  text-align: center;
}

.hero {
  background: url('assets/images/hero.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
}

.cta-button {
  display: inline-block;
  margin: 1rem;
  padding: 0.75rem 1.5rem;
  background: #0073aa;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

.cta-button.whatsapp {
  background: #25D366;
}

.services {
  padding: 3rem 2rem;
  background: #f9f9f9;
}

.service-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.service-card {
  background: #fff;
  padding: 2rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 250px;
  text-align: center;
}
