* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a2e;
  background-color: #f6f7f5;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: #1c5d5d;
  text-decoration: none;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #e3e6e8;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6%;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 20px;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  color: #6a7376;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.layout {
  display: flex;
  flex-direction: column;
}

.section {
  padding: 56px 6%;
}

.section.alt {
  background: #eef3f2;
}

.section.deep {
  background: #1f2a2e;
  color: #ffffff;
}

.split {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero-title {
  font-size: 40px;
  line-height: 1.2;
  margin: 0 0 16px;
}

.lead {
  font-size: 18px;
  margin: 0 0 20px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  background: #1c5d5d;
  color: #ffffff;
  border: none;
  padding: 12px 22px;
  border-radius: 28px;
  cursor: pointer;
  font-size: 15px;
}

.btn.secondary {
  background: #ffffff;
  color: #1c5d5d;
  border: 1px solid #1c5d5d;
}

.btn.block {
  width: 100%;
  text-align: center;
}

.inline-link {
  font-weight: 600;
}

.media {
  background-color: #d9e1df;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-size: 20px;
  font-weight: 600;
}

.image-frame {
  background-color: #d9e1df;
  border-radius: 12px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef3f2;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 13px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.form-grid {
  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 #c9d2d2;
  font-size: 15px;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #1c5d5d;
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

footer {
  background: #12191c;
  color: #d7dde0;
  padding: 40px 6%;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-grid a {
  color: #d7dde0;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  width: min(360px, 90vw);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1 1 auto;
}

.hidden {
  display: none;
}
