* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav-split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 5vw;
  gap: 24px;
  background: #f7f4f0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-links a {
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.nav-links a:hover {
  border-color: #1b1b1b;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1b1b1b;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.section {
  padding: 64px 5vw;
}

.section.alt {
  background: #fff;
}

.section.dark {
  background: #1b1b1b;
  color: #f7f4f0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-column {
  flex: 1;
  min-width: 0;
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  background: #1b1b1b;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section h1,
.section h2 {
  font-weight: 700;
  line-height: 1.2;
  margin-top: 16px;
  margin-bottom: 16px;
}

.section h1 {
  font-size: 2.3rem;
}

.section h2 {
  font-size: 1.8rem;
}

.lead {
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.button {
  padding: 12px 20px;
  border-radius: 999px;
  background: #1b1b1b;
  color: #fff;
  font-size: 0.9rem;
  border: 1px solid #1b1b1b;
}

.button.outline {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}

.button.light {
  background: #f7f4f0;
  color: #1b1b1b;
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.07);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.card.dark {
  background: #2b2b2b;
  color: #f7f4f0;
}

.card img {
  width: 56px;
  height: 56px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(27, 27, 27, 0.15);
  background: #fff;
}

.service-item span {
  display: block;
  font-weight: 600;
  margin-top: 6px;
}

.form-wrap {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

label {
  font-size: 0.85rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(27, 27, 27, 0.2);
  font-size: 0.95rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.quote {
  font-style: italic;
  padding: 16px;
  border-left: 3px solid #1b1b1b;
}

.footer {
  padding: 40px 5vw;
  background: #1b1b1b;
  color: #f7f4f0;
  margin-top: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

.footer small {
  display: block;
  margin-top: 18px;
  opacity: 0.7;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 20;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.policy-page {
  max-width: 900px;
  margin: 0 auto;
}

.policy-page ul {
  padding-left: 20px;
}

.split-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
}

.meta {
  font-size: 0.9rem;
  opacity: 0.8;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .section h1 {
    font-size: 3rem;
  }

  .section h2 {
    font-size: 2.2rem;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }
}
