:root {
  --primary: #0077b6;
  --primary-dark: #005f8f;
  --accent: #1ea95f;
  --text: #1f2937;
  --muted: #4b5563;
  --bg: #f6f8fb;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.top-logo-banner {
  background: #000;
  padding: 1rem 0;
  display: flex;
  justify-content: center;
}

.top-logo-banner img {
  width: min(760px, 92vw);
  height: auto;
  display: block;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.nav-list {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.hero {
  padding: 3rem 0 2rem;
  background: linear-gradient(145deg, #e9f7ff, #f8fffb);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  margin: 0.4rem 0 1rem;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
}

.button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.1rem;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
}

.button:hover {
  background: var(--primary-dark);
}

.section {
  padding: 3rem 0;
}

.section-accent {
  background: #eef9f2;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--white);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.action-photo {
  margin: 1rem 0 0;
}

.action-photo img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  border: 0;
  background: transparent;
  box-shadow: none;
  display: block;
  margin-inline: auto;
}

.site-footer {
  border-top: 1px solid #e5e7eb;
  background: var(--white);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 0;
  flex-wrap: wrap;
}

.footer-inner a {
  margin-left: 0.7rem;
  color: var(--primary);
  text-decoration: none;
}

.legal-main {
  padding: 2.4rem 0 3.2rem;
}

.legal-main article {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.4rem;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: min(420px, 92vw);
  background: #111827;
  color: #fff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgb(0 0 0 / 0.3);
}

.cookie-banner button {
  border: 0;
  margin-top: 0.6rem;
  padding: 0.55rem 0.8rem;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}

.cookie-banner.is-hidden {
  display: none;
}

a:focus,
button:focus {
  outline: 3px solid #a7f3d0;
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 680px) {
  .nav-list {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}
