:root {
  --fg: #1d1d1d;
  --bg: #feeeee;
  --muted: #666;
  --accent: #f46036;
  --accent-foreground: #fff;
  --primary-color: #0077B6;
  --secondary-color: #81D2C7;
  --complementary-color: #646F58;
  --success: #81D2C7; /* Alias for secondary-color */
  --warning: #646F58; /* Alias for accent/complementary-color */
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  color: var(--fg);
  background: var(--bg);
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg);
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  min-height: 100vh;
  display: grid;
  place-content: center;
  text-align: center;
}

nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  color: var(--fg);
  text-decoration: none;
  font-weight: 600;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  transition: background .15s ease, color .15s ease, transform .08s ease;
}

nav a:hover,
nav a:focus {
  background: rgba(0, 119, 182, 0.08);
  outline: none;
  transform: translateY(-1px);
  color: var(--primary-color);
}

nav a[aria-current="page"] {
  background: rgba(0, 119, 182, 0.1);
  box-shadow: inset 0 -2px 0 var(--primary-color);
  color: var(--primary-color);
}

footer {
  padding: 1.25rem 1rem;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.95rem;
}

@media (max-width: 480px) {
  header {
    padding: 0.6rem 0.75rem;
  }

  nav {
    gap: 0.75rem;
  }

  nav a {
    padding: 0.35rem 0.5rem;
    font-size: 0.95rem;
  }
}

#hero {
  padding: 6rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 119, 182, 0.08), rgba(129, 210, 199, 0.06), transparent);
}

.hero-sub {
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto 0.5rem;
  font-size: 1.05rem;
}

.cta {
  display: inline-block;
  padding: 0.7rem 1.25rem;
  background: var(--primary-color);
  color: var(--accent-foreground);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
  box-shadow: 0 6px 18px rgba(0, 119, 182, 0.15);
}

.cta:hover,
.cta:focus {
  transform: translateY(-3px);
  opacity: 0.98;
}

.cta:focus {
  outline: 3px solid rgba(0, 119, 182, 0.25);
  outline-offset: 3px;
}

/* Service Cards */
.service-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border: 2px solid transparent;
  position: relative;
}

.service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--secondary-color));
  border-radius: 12px 12px 0 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 119, 182, 0.1);
}

.service:hover::before {
  opacity: 1;
}

.service h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.service h2 a {
  color: var(--fg);
  text-decoration: none;
  transition: color 0.2s ease;
}

.service h2 a:hover,
.service h2 a:focus {
  color: var(--accent);
}

.service p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.service strong {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 700;
}

/* Service Pages */
.service-description {
  max-width: 60ch;
  margin: 1.5rem auto;
  line-height: 1.6;
  font-size: 1.05rem;
  color: var(--muted);
}

.price-field {
  text-align: center;
  margin: 2rem 0;
  font-size: 1.2rem;
}

.price-field strong {
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 800;

}