body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f2e9dd;
  color: #222;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 45px;
  background: #fff;
}

.logo {
  height: 120px;
  width: auto;
}

.nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #111;
  font-weight: bold;
}

.nav-button {
  background: #f15a29;
  color: white !important;
  padding: 12px 20px;
  border-radius: 24px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  padding: 55px 80px 40px 80px;
}

.hero-text {
  max-width: 650px;
}

.hero-text h1 {
  font-size: 64px;
  line-height: 1.05;
  margin: 0 0 18px 0;
}

.hero-text p {
  font-size: 20px;
  margin-bottom: 24px;
}

.button {
  background: #f15a29;
  color: white;
  padding: 14px 24px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: bold;
}

.hero-image img {
  width: 520px;
  max-width: 100%;
  border-radius: 22px;
  display: block;
}

.services {
  text-align: center;
  padding: 30px 40px 60px 40px;
}

.cat-image {
  width: 180px;
  display: block;
  margin: -50px auto 5px auto;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.2));
}

.services h2 {
  font-size: 34px;
  margin: 0 0 25px 0;
}

.services-grid {
  display: flex;
  gap: 35px;
  justify-content: center;
}

.service-card {
  background: white;
  padding: 20px;
  border-radius: 14px;
  max-width: 270px;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
}

.footer {
  text-align: center;
  padding: 30px;
  background: white;
  font-size: 14px;
}

.footer a {
  color: #f15a29;
  text-decoration: none;
}

.button:hover,
.nav-button:hover {
  opacity: 0.85;
}
.hero-image {
  margin-top: 20px;
}
/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .site-header {
    padding: 15px 20px;
  }

  .logo {
    height: 80px;
  }

  .nav a {
    margin-left: 12px;
    font-size: 14px;
  }

  .nav-button {
    padding: 10px 14px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 35px 25px;
    gap: 30px;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-text p {
    font-size: 17px;
  }

  .hero-image img {
    width: 100%;
    max-width: 420px;
  }

  .cat-image {
    width: 150px;
    margin: -20px auto 5px auto;
  }

  .services {
    padding: 30px 20px 50px 20px;
  }

  .services-grid {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    max-width: 320px;
  }

  .footer {
    padding: 25px 15px;
  }
}