*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

img, video, iframe, svg, canvas {
  max-width: 100%;
  height: auto;
}

:root {
  --color-brand: #556b2f;
  --color-cta: #ff6a00;
  --text-dark: #222;
  --text-muted: #666;
  --border: #ccc;
  --bg-light: #f4f6f0;
  --bg-card: #fff;
}

.services-hero {
  background-color: var(--color-brand);
  padding: 80px 24px 70px;
  text-align: center;
}

.services-hero__inner {
  max-width: 760px;
  margin: 0 auto;
}

.services-hero__title {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 18px;
  line-height: 1.6;
}

.services-hero__sub {
  font-size: 17px;
  color: #d9e6bc;
  margin: 0 0 32px;
  line-height: 1.6;
}

.services-hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta {
  display: inline-block;
  background-color: var(--color-cta);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.2s;
}

.btn-cta:hover {
  background-color: #e05a00;
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 13px 32px;
  border-radius: 6px;
  border: 2px solid #fff;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.btn-outline:hover {
  background-color: #fff;
  color: var(--color-brand);
}

.services-hero__mention {
  margin: 16px 0 0;
  font-size: 13px;
  color: #c8dba0;
  line-height: 1.6;
}

.services-main {
  width: 100%;
}

.services-grid-section {
  background-color: var(--bg-light);
  padding: 64px 0;
}

.services-container {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.service-card {
  background-color: var(--bg-card);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.13);
}

.service-card__img-wrap {
  width: 100%;
  overflow: hidden;
  height: 220px;
}

.service-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.6;
}

.service-card__title a {
  color: var(--color-brand);
  text-decoration: none;
  transition: color 0.2s;
}

.service-card__title a:hover {
  color: #3d4e20;
}

.service-card__desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 14px;
  flex: 1;
}

.service-card__price {
  font-size: 14px;
  color: var(--color-brand);
  font-weight: 700;
  margin: 0 0 20px;
  line-height: 1.6;
}

.btn-card-cta {
  display: inline-block;
  background-color: var(--color-cta);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 11px 24px;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  align-self: flex-start;
  transition: background-color 0.2s;
}

.btn-card-cta:hover {
  background-color: #e05a00;
}

.services-why {
  background-color: #fff;
  padding: 64px 0;
}

.services-why__title {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-brand);
  margin: 0 0 40px;
  line-height: 1.6;
  text-align: center;
}

.services-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.services-why__item {
  text-align: center;
  padding: 28px 20px;
  border-radius: 8px;
  background-color: var(--bg-light);
}

.services-why__icon {
  color: var(--color-brand);
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
}

.services-why__label {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.6;
}

.services-why__item p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.services-zones {
  background-color: var(--bg-light);
  padding: 64px 0;
}

.services-zones__title {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-brand);
  margin: 0 0 16px;
  line-height: 1.6;
  text-align: center;
}

.services-zones__intro {
  font-size: 16px;
  color: var(--text-muted);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.services-zones__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.services-zones__table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.services-zones__table th {
  background-color: var(--color-brand);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 20px;
  text-align: left;
  line-height: 1.6;
}

.services-zones__table td {
  padding: 13px 20px;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
  border-bottom: 1px solid #e0e0e0;
}

.services-zones__table tbody tr:last-child td {
  border-bottom: none;
}

.services-zones__table tbody tr:nth-child(even) td {
  background-color: #f8faf4;
}

.services-cta-band {
  background-color: var(--color-brand);
  padding: 64px 24px;
  text-align: center;
}

.services-cta-band .services-container {
  max-width: 700px;
}

.services-cta-band__title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.6;
}

.services-cta-band__text {
  font-size: 17px;
  color: #d9e6bc;
  margin: 0 0 32px;
  line-height: 1.6;
}

.services-cta-band__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-light {
  display: inline-block;
  background-color: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 13px 32px;
  border-radius: 6px;
  border: 2px solid #fff;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.btn-outline-light:hover {
  background-color: #fff;
  color: var(--color-brand);
}

@media (max-width: 768px) {
  .services-hero {
    padding: 52px 20px 48px;
  }

  .services-hero__title {
    font-size: 26px;
  }

  .services-hero__sub {
    font-size: 16px;
  }

  .services-hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta,
  .btn-outline {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .services-grid-section {
    padding: 40px 0;
  }

  .services-container {
    width: 94%;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-card__img-wrap {
    height: 200px;
  }

  .btn-card-cta {
    width: 100%;
    align-self: stretch;
    text-align: center;
  }

  .services-why {
    padding: 40px 0;
  }

  .services-why__title {
    font-size: 24px;
  }

  .services-why__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-zones {
    padding: 40px 0;
  }

  .services-zones__title {
    font-size: 24px;
  }

  .services-zones__table th,
  .services-zones__table td {
    font-size: 14px;
    padding: 10px 14px;
  }

  .services-cta-band {
    padding: 44px 20px;
  }

  .services-cta-band__title {
    font-size: 24px;
  }

  .services-cta-band__text {
    font-size: 16px;
  }

  .services-cta-band__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta,
  .btn-outline-light {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .services-hero__title {
    font-size: 22px;
  }

  .services-why__title,
  .services-zones__title,
  .services-cta-band__title {
    font-size: 21px;
  }

  .service-card__body {
    padding: 18px;
  }

  .services-zones__table th,
  .services-zones__table td {
    font-size: 13px;
    padding: 8px 10px;
  }
}