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

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.55;
  color: #1a1a1a;
  background: #e8f4fc;
}

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

.site-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.brand {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0d5c5c;
}

.phone {
  color: #0a7a7a;
  font-weight: 700;
  text-decoration: none;
}

.phone:hover {
  text-decoration: underline;
}

.hero {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-top: 24px;
  padding: 32px 28px;
}

.hero h1 {
  margin-top: 0;
  color: #0d5c5c;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.trust {
  color: #555;
  font-size: 0.95rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary {
  background: #14c8c8;
  color: #003333;
}

.btn-secondary {
  background: #fff;
  border: 2px solid #0d5c5c;
  color: #0d5c5c;
}

.services {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin: 24px auto 32px;
  padding: 24px 28px;
}

.services h2 {
  margin-top: 0;
  color: #0d5c5c;
}

.services ul {
  margin: 0;
  padding-left: 1.25rem;
}

.site-footer {
  padding: 24px 0 40px;
  color: #555;
  font-size: 0.95rem;
}

.site-footer a {
  color: #0a7a7a;
}
