* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1b1b1b;
  background: #f7f5f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-bar {
  background: #102a43;
  color: #fefefe;
  padding: 12px 0;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 13px;
  background: #f2b705;
  color: #1b1b1b;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  min-height: 70vh;
}

.hero-text,
.hero-media {
  flex: 1 1 360px;
  padding: 56px 42px;
}

.hero-text {
  background: #fdfaf4;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-text h1 {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.15;
}

.hero-text p {
  font-size: 17px;
  max-width: 520px;
}

.hero-media {
  background: #c2b7a3;
}

.hero-media img {
  height: 100%;
  min-height: 320px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 6px;
  background: #1f7a8c;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #f2b705;
  color: #1b1b1b;
}

.btn.outline {
  background: transparent;
  border: 1px solid #1f7a8c;
  color: #1f7a8c;
}

.section {
  padding: 60px 0;
}

.section.light {
  background: #ffffff;
}

.section.dark {
  background: #102a43;
  color: #fefefe;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content,
.split .media {
  flex: 1 1 320px;
}

.media {
  background: #c8c1b2;
  padding: 12px;
  border-radius: 12px;
}

.media img {
  border-radius: 10px;
  height: 100%;
  min-height: 260px;
}

.tag {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  display: inline-block;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card-row.spaced {
  margin-top: 30px;
}

.card {
  flex: 1 1 240px;
  background: #fefefe;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(16, 42, 67, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  background: #d8d1c6;
  border-radius: 10px;
  overflow: hidden;
}

.card-image img {
  height: 180px;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: #1f7a8c;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-note {
  background: #f2b705;
  color: #1b1b1b;
  padding: 16px;
  border-radius: 10px;
  max-width: 360px;
}

.form-wrap {
  background: #fdfaf4;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.12);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-size: 14px;
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c8c1b2;
  font-size: 15px;
  background: #ffffff;
}

.form-helper {
  font-size: 12px;
  color: #4a4a4a;
}

.split-note {
  display: flex;
  align-items: center;
  gap: 12px;
}

.split-note .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #1f7a8c;
}

.inline-link {
  color: #1f7a8c;
  text-decoration: underline;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1f7a8c;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 10px 24px rgba(16, 42, 67, 0.2);
  z-index: 10;
}

.footer {
  background: #0f1f2d;
  color: #fefefe;
  padding: 40px 0;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #d7d7d7;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #c8c1b2;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-hero {
  padding: 50px 0;
  background: #fdfaf4;
}

.page-hero h1 {
  font-size: clamp(30px, 4vw, 40px);
}

.hero-meta {
  margin-top: 12px;
  color: #4a4a4a;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  align-items: center;
}

.service-item .service-text {
  flex: 1 1 320px;
}

.service-item .service-media {
  flex: 0 0 240px;
  background: #c8c1b2;
  border-radius: 10px;
  overflow: hidden;
}

.service-item img {
  height: 160px;
}

.address-block {
  background: #fdfaf4;
  padding: 20px;
  border-radius: 12px;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

.cookie-preferences {
  background: transparent;
  border: 1px solid #f2b705;
  color: #f2b705;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}
