* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background-color: #f7f6f2;
  line-height: 1.6;
}

a {
  color: #114c5f;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.ad-bar {
  background: #102b2f;
  color: #fdfaf4;
  font-size: 0.9rem;
  text-align: center;
  padding: 0.45rem 1rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fdfaf4;
  position: relative;
}

.hero::after {
  position: absolute;
  background: rgba(11, 23, 25, 0.55);
}

.hero-content {
  position: relative;
  padding: 6rem 0 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 3vw, 3.3rem);
  margin: 0;
  max-width: 720px;
}

.hero-content p {
  max-width: 620px;
  margin: 0;
}

.btn {
  background: #f5b04c;
  color: #1b1b1b;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  background: #f2a233;
}

.btn-outline {
  background: transparent;
  border: 1px solid #1b1b1b;
  color: #1b1b1b;
}

.btn-outline:hover {
  background: #1b1b1b;
  color: #fdfaf4;
}

.section {
  padding: 4.5rem 0;
}

.section-light {
  background: #ffffff;
}

.section-tint {
  background: #eef1ef;
}

.split {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.image-frame {
  background-color: #dfe6e7;
  padding: 0.6rem;
  border-radius: 18px;
}

.image-frame img {
  border-radius: 14px;
}

.offset-panel {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.offset-box {
  flex: 1 1 280px;
  background: #fff8f1;
  padding: 2rem;
  border-radius: 16px;
  margin-top: -2rem;
}

.cards {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 14px 35px rgba(16, 43, 47, 0.08);
}

.card figure {
  margin: 0;
  background-color: #e5ecec;
  border-radius: 14px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.badge {
  display: inline-flex;
  background: #0f3f47;
  color: #fdfaf4;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
}

.insight {
  background-image: url("https://images.unsplash.com/photo-1503602642458-232111445657?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fdfaf4;
  position: relative;
}

.insight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 23, 25, 0.55);
}

.insight .container {
  position: relative;
}

.form-wrap {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 12px 32px rgba(15, 63, 71, 0.12);
}

.form-panel label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form-panel input,
.form-panel select {
  padding: 0.7rem;
  border: 1px solid #c9d6d8;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: #8b2d2d;
  min-height: 1.1rem;
}

.service-choice {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-choice label {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  border: 1px solid #d5e1e3;
  border-radius: 12px;
  padding: 0.8rem;
  cursor: pointer;
}

.service-choice input {
  margin-top: 0.2rem;
}

.testimonial {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}

.testimonial img {
  width: 90px;
  height: 90px;
  border-radius: 16px;
}

.sticky-cta {
  position: fixed;
  right: 1.2rem;
  bottom: 1.4rem;
  z-index: 50;
  box-shadow: 0 12px 30px rgba(12, 35, 40, 0.25);
}

.page-header {
  padding: 3.5rem 0 2rem;
}

.page-content {
  padding-bottom: 3rem;
}

.footer {
  background: #102b2f;
  color: #fdfaf4;
  padding: 2.5rem 0;
}

.footer a {
  color: #f5d08f;
}

.footer-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-grid > div {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  background: #ffffff;
  border-radius: 14px;
  padding: 1rem 1.2rem;
  box-shadow: 0 12px 35px rgba(12, 35, 40, 0.2);
  display: none;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 80;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
}

.pill-list {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pill {
  background: #e9eff0;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
}
