* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2a2e;
  background: #f7f5f2;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #0b4b6f;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  padding: 24px 0;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  background: #0b4b6f;
  color: #ffffff;
  border-radius: 999px;
}

.hero {
  position: relative;
  padding: 90px 0 120px;
  color: #ffffff;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 24, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 520px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
}

.hero p {
  font-size: 18px;
}

.cta-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: #f6b73c;
  color: #1f2a2e;
}

.secondary-button {
  background: #ffffff;
  color: #0b4b6f;
}

.cta-button:hover,
.secondary-button:hover,
.link-cta:hover {
  transform: translateY(-1px);
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 18px;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.asym-card {
  flex: 1 1 360px;
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(12, 30, 38, 0.08);
}

.image-frame {
  background-color: #d6d3cc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(12, 30, 38, 0.15);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offset {
  margin-top: -40px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  background: #0b4b6f;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 18px 40px rgba(12, 30, 38, 0.08);
}

.service-card img {
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: #0b4b6f;
}

.story-panel {
  background: #eef3f4;
  padding: 34px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(12, 30, 38, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9d1d6;
  font-size: 15px;
  background: #ffffff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.split-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.highlight-block {
  flex: 1 1 300px;
  background: #1f2a2e;
  color: #ffffff;
  padding: 26px;
  border-radius: 18px;
}

.highlight-block.light {
  background: #ffffff;
  color: #1f2a2e;
}

.inline-link {
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  background: #0b4b6f;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  gap: 16px;
  align-items: center;
  z-index: 999;
  box-shadow: 0 18px 30px rgba(12, 30, 38, 0.2);
}

.sticky-cta button {
  background: #f6b73c;
  border: none;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

footer {
  margin-top: auto;
  padding: 40px 0;
  background: #0f1b20;
  color: #e4eaee;
}

footer a {
  color: #f6b73c;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  background: #ffffff;
  box-shadow: 0 -10px 25px rgba(12, 30, 38, 0.15);
  padding: 18px;
  display: none;
  z-index: 1000;
}

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #0b4b6f;
  color: #ffffff;
}

.cookie-reject {
  background: #d9dee2;
  color: #1f2a2e;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-list li {
  list-style: none;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.two-col > div {
  flex: 1 1 320px;
}

.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.contact-box {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(12, 30, 38, 0.08);
}

.notice {
  font-size: 13px;
  color: #45535a;
}

@media (max-width: 780px) {
  .hero {
    padding: 70px 0 90px;
  }

  .sticky-cta {
    width: 92%;
    justify-content: space-between;
  }
}
