.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

main p {
  color: #5c6869;
}

.intro {
  text-align: center;
  padding: 60px 20px;
}

.service-row {
  display: flex;
  background: white;
  margin-bottom: 40px;
  align-items: stretch;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-text {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-text h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.features {
  list-style: none;
  margin: 20px 0;
}

.features li::before {
  content: "› ";
  color: #78faae;
  font-weight: bold;
  font-size: 1.5rem;
}

.buttons {
  display: flex;
  gap: 35px;
  margin-top: 20px;
}

.buttons.center {
  justify-content: center;
}

.btn {
  text-decoration: none;
  padding: 10px 0;
  border-radius: 25px;
  font-weight: bold;
  font-size: 11px;
  width: 140px;
  display: inline-block;
  text-align: center;
}

.btn-light {
  background: #a3ffcc;
  color: #000;
}

.btn-primary-large {
  background: #2de38e;
  color: #000;
  padding: 15px 40px;
  font-size: 12px;
}

.btn:hover {
  opacity: 0.8;
}

.final-cta {
  text-align: center;
  padding: 60px 0;
}

.final-cta h3 {
  margin-bottom: 30px;
  font-size: 1rem;
}

.features li,
.features p {
  color: #394748;
}

@media (max-width: 768px) {
  .service-row,
  .service-row.reverse {
    flex-direction: column;
  }

  .buttons {
    gap: 10px;
  }

  .btn {
    
  }
}
