
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fffef9;
  color: #2e2e2e;
}
.hero {
  background: url('img/hero.jpg') center/cover no-repeat;
  padding: 140px 20px 100px;
  text-align: center;
  color: white;
}
.hero h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}
.cta-buttons .btn {
  margin: 10px;
}
main {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}
section {
  margin-bottom: 60px;
}
.info, .services {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}
.column {
  flex: 1 1 45%;
}
.image-icon img {
  max-width: 100%;
}
.service-list {
  list-style: none;
  padding-left: 0;
}
.service-list li {
  margin: 10px 0;
}
.testimonios blockquote {
  background: #f1f1f1;
  border-left: 5px solid #3c763d;
  padding: 20px;
  margin: 20px 0;
}
.testimonios cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  color: #3c763d;
}
footer {
  text-align: center;
  background: #3c763d;
  color: white;
  padding: 30px 20px;
}
.logo-footer {
  width: 100px;
  margin-bottom: 10px;
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
}
.btn-filled {
  background-color: #3c763d;
  color: white;
}
.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}
.btn.small {
  font-size: 0.9em;
  padding: 8px 16px;
}
