* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1f2328;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  background: #111111;
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 999px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
  padding: 54px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy,
.split .media {
  flex: 1 1 50%;
}

.copy h1,
.copy h2,
.copy h3 {
  margin-top: 0;
  line-height: 1.2;
}

.copy h1 {
  font-size: 42px;
}

.copy h2 {
  font-size: 32px;
}

.copy h3 {
  font-size: 22px;
}

.tagline {
  color: #5b6169;
  font-size: 18px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.button {
  border: none;
  background: #0f4c5c;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
}

.button.light {
  background: #ffffff;
  color: #0f4c5c;
  border: 1px solid #0f4c5c;
}

.button.text {
  background: transparent;
  color: #0f4c5c;
  padding: 0;
  border-radius: 0;
  border: none;
}

.media {
  min-height: 320px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #d9d3c7;
  position: relative;
}

.media.small {
  min-height: 240px;
}

.panel {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 16px 32px rgba(16, 20, 30, 0.08);
}

.section-tone {
  background: #ebe5dc;
  border-radius: 24px;
  padding: 32px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  padding: 16px;
  border-radius: 14px;
  background: #f1ece4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-item {
  background: #f1ece4;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.card-item p {
  margin: 0;
}

.thumb {
  width: 120px;
  height: 84px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #d9d3c7;
  flex: 0 0 auto;
}

.service-item span {
  font-weight: 600;
}

.pill {
  background: #ffffff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
}

.testimonial {
  border-left: 3px solid #0f4c5c;
  padding-left: 14px;
  margin: 18px 0;
}

.form-box {
  background: #0f4c5c;
  color: #ffffff;
  padding: 24px;
  border-radius: 16px;
}

.form-box label {
  display: block;
  margin-bottom: 6px;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  margin-bottom: 12px;
}

.form-box button {
  width: 100%;
}

.footer {
  padding: 36px 0 80px;
  font-size: 14px;
  color: #4d535b;
}

.footer .links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 12px 28px rgba(16, 20, 30, 0.15);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 30;
}

.sticky-cta button {
  border-radius: 999px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(16, 20, 30, 0.18);
  max-width: 320px;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notice {
  background: #f0ebe2;
  padding: 16px;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
