:root {
  --primary: #1f2a33; --accent: #d9a300; --bg: #ffffff; --text: #1a1a1a; 
  --muted: #555; --border: #e5e5e5;
}
body { margin: 0; font-family: system-ui, -apple-system, Segoe UI, 
  Roboto, sans-serif; background: var(--bg); color: var(--text); 
  line-height: 1.6;
}
.container { max-width: 1000px; margin: auto; padding: 1.5rem;
}
header { border-bottom: 4px solid var(--accent); background: #fff;
}
.header-inner { display: flex; align-items: center; justify-content: 
  space-between; gap: 1rem;
}
.logo { max-height: 60px;
 display: block;
}
nav ul { list-style: none; display: flex; gap: 1.5rem; padding: 0; 
  margin: 0;
}
nav a { text-decoration: none; color: var(--primary); font-weight: 600;
}
nav a:hover, nav a:focus { text-decoration: underline;
}
.skip-link { position: absolute; top: -40px; left: 0; background: black; 
  color: white; padding: 8px;
}
.skip-link:focus { top: 0;
}
h1, h2, h3 { color: var(--primary);
}
.hero { 
	padding: 0.5rem 0 0.25rem;
	margin: 0 0 0;

}
.hero h1 { font-size: 2.4rem; margin-bottom: 0.5rem;
}
.hero p { font-size: 1.2rem; color: var(--muted); max-width: 650px;
}
.cta { margin-top: 1.5rem;
}
.btn { display: inline-block; background: var(--accent); color: black; 
  padding: 0.75rem 1.2rem; font-weight: bold; text-decoration: none; 
  border-radius: 4px;
}
.btn:focus { outline: 3px solid black;
}
section { margin-top: 3rem;
}
.services { display: grid; gap: 1rem;
}
.card { border: 1px solid var(--border); border-left: 5px solid 
  var(--accent); padding: 1rem; border-radius: 6px; background: #fff;
}
.card h3 { margin-top: 0;
}
.contact-box { margin-top: 1rem; padding: 1rem; border-left: 5px solid 
  var(--accent); background: #fafafa;
}
.contact-box a { font-weight: bold; color: var(--primary); 
  text-decoration: none;
}
.contact-box a:hover, .contact-box a:focus { text-decoration: underline;
}
footer { margin-top: 3rem; padding: 1.5rem; text-align: center; 
  border-top: 1px solid var(--border); color: var(--muted); font-size: 
  0.9rem;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: #fff;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  z-index: 100;
}

#cookie-banner p {
  margin: 0;
}

#cookie-banner a {
  color: var(--accent);
}

#cookie-banner button {
  background: var(--accent);
  color: black;
  border: none;
  padding: 0.5rem 1rem;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}

.stats {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  border: 1px solid var(--border);
  border-left: 5px solid var(--accent);
  padding: 1rem;
  border-radius: 6px;
  background: #fff;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.4;
}

@media (min-width: 700px) { 
	.services { grid-template-columns: repeat(3, 1fr);
  }

  .stats { grid-template-columns: repeat(4, 1fr);
  }

  .hero h1 { font-size: 2.8rem;
  }
}
