* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f7f6;
  color: #111;
}

.page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
}
@media (max-width: 600px) {

  .page {
    min-height: 100svh;
    align-items: start;
    padding: 24px 16px;
  }

  .card {
    padding: 22px 20px;
    border-radius: 20px;
  }

  .logo {
    max-width: 130px;
    margin-bottom: 12px;
  }

  .subtitle {
    font-size: 16px;
  }

  .areas {
    margin: 10px 0 18px;
  }

  .buttons {
    gap: 10px;
  }

  .button {
    padding: 13px 16px;
  }

  .services {
    margin-top: 18px;
  }
}
.card {
  width: 100%;
  max-width: 430px;
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.logo {
  max-width: 150px;
  margin-bottom: 18px;
}

h1 {
  margin: 0 0 10px;
  font-size: 28px;
}

.subtitle {
  margin: 0;
  font-size: 17px;
  color: #333;
}

.areas {
  margin: 14px 0 24px;
  font-size: 15px;
  line-height: 1.5;
  color: #555;
}

.buttons {
  display: grid;
  gap: 12px;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 15px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.15s ease, filter 0.15s ease;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.button,
.button span {
  pointer-events: auto;
}

.button {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  touch-action: manipulation;
}

.button:active {
  transform: scale(0.98);
}

.icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

.reviews {

    background: #e8f0fe;

    color: #1a73e8;

}

.quote {

    background: #0f7b4f;

    color: #ffffff;

}

.whatsapp {

    background: #25d366;

    color: #ffffff;

}

.phone {

    background: #eceff1;

    color: #374151;

}
.services {
  margin: 24px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: #666;
}