* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #0b1b2b;
  --sea: #0f5e6b;
  --foam: #e7f2f4;
  --sand: #f6efe6;
  --sun: #f2c36b;
  --mist: #dfe8ee;
  --deep: #07233b;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 0 12px;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}

.ad-label {
  font-size: 12px;
  background: var(--sand);
  color: var(--deep);
  padding: 6px 10px;
  border-radius: 18px;
  max-width: 240px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--sea);
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 110px 0 90px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 35, 59, 0.6);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
}

.hero p {
  font-size: 18px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  background: var(--sun);
  color: var(--deep);
  font-weight: 600;
}

.btn:hover,
.btn:focus {
  border-color: var(--deep);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.section {
  padding: 70px 0;
}

.offset-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.offset-block {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.offset-block.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  flex: 1 1 320px;
  background: var(--foam);
  padding: 32px;
  border-radius: 26px;
  position: relative;
  top: -18px;
}

.offset-card.alt {
  background: var(--sand);
  top: 14px;
}

.offset-image {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
  background: #d9e5ea;
  border-radius: 28px;
  padding: 18px;
}

.offset-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 22px;
}

.text-link {
  color: var(--sea);
  border-bottom: 1px solid var(--sea);
}

.text-link:hover,
.text-link:focus {
  color: var(--deep);
  border-bottom-color: var(--deep);
}

.services {
  background-image: url("https://images.unsplash.com/photo-1500375592092-40eb2168fd21?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #ffffff;
}

.services::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 35, 48, 0.75);
}

.services .container {
  position: relative;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 240px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  background: #cbdde4;
}

.service-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--sea);
}

.highlight {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 39, 52, 0.7);
}

.highlight .container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.highlight-card {
  flex: 1 1 320px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 26px;
  backdrop-filter: blur(6px);
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.form-panel {
  flex: 1 1 320px;
  background: var(--mist);
  padding: 28px;
  border-radius: 22px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c7d4da;
  font-size: 15px;
}

.form-panel button {
  align-self: flex-start;
}

.aside-panel {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  background: var(--foam);
  border-radius: 999px;
  font-size: 13px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--deep);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  z-index: 10;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: var(--sea);
}

.footer {
  margin-top: auto;
  padding: 40px 0 60px;
  background: var(--deep);
  color: #ffffff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: space-between;
}

.footer a {
  color: #ffffff;
}

.footer small {
  opacity: 0.8;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #d9e2e7;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-banner button {
  border-radius: 22px;
  border: 2px solid var(--deep);
  padding: 8px 16px;
  background: var(--deep);
  color: #ffffff;
}

.cookie-banner .reject {
  background: transparent;
  color: var(--deep);
}

.page-hero {
  padding: 80px 0 60px;
  background: var(--sand);
}

.page-hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.page-hero-inner img {
  width: 100%;
  max-width: 420px;
  height: 260px;
  object-fit: cover;
  border-radius: 22px;
  background: #d6e4eb;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-col .col {
  flex: 1 1 320px;
}

.legal {
  padding: 60px 0;
}

.legal h1 {
  margin-bottom: 16px;
}

.legal h2 {
  margin: 26px 0 12px;
}

.legal ul {
  padding-left: 18px;
}

.thanks {
  padding: 80px 0;
  background: var(--foam);
}

.thanks-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 720px) {
  .offset-card {
    top: 0;
  }

  .offset-card.alt {
    top: 0;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: center;
  }
}
