* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1f23;
  background-color: #f7f6f3;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #1c4c6b;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-bar {
  padding: 20px 0;
  border-bottom: 1px solid #e2e1dd;
  background-color: #fbfaf8;
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  padding: 6px 8px;
  border-radius: 6px;
}

.nav-links a:hover {
  background-color: #e7efe7;
}

.ad-label {
  font-size: 0.85rem;
  color: #5b5454;
  padding: 6px 10px;
  border: 1px solid #d7d1cb;
  border-radius: 999px;
  background-color: #fff;
}

.hero {
  position: relative;
  padding: 60px 0 80px;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.hero-copy {
  flex: 1 1 360px;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-copy p {
  font-size: 1.1rem;
  margin-bottom: 18px;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  background-color: #0f5b4a;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn.secondary {
  background-color: #e4f2ed;
  color: #0f5b4a;
}

.btn:hover {
  transform: translateY(-1px);
}

.inline-link {
  text-decoration: underline;
}

.hero-image {
  flex: 1 1 360px;
}

.image-frame {
  background-color: #d7e2d8;
  border-radius: 18px;
  overflow: hidden;
}

.frame-hero {
  height: 380px;
}

.frame-large {
  height: 320px;
}

.frame-medium {
  height: 260px;
}

.frame-card {
  height: 160px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background-color: #ffffff;
}

.section-header {
  margin-bottom: 26px;
  max-width: 700px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  margin-bottom: 12px;
}

.section-header p {
  color: #4c4a47;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background-color: #f1f4f1;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 1.1rem;
}

.card p {
  color: #4d4c49;
  flex: 1;
}

.card .btn {
  align-self: flex-start;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-item {
  background-color: #fff;
  padding: 16px;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  border: 1px solid #ece8e2;
}

.price {
  font-weight: 700;
  color: #0f5b4a;
  white-space: nowrap;
}

.testimonial {
  background-color: #0f5b4a;
  color: #fff;
  padding: 18px;
  border-radius: 14px;
  flex: 1 1 260px;
}

.form-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e9e3dc;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cfc9c2;
  font-size: 1rem;
  background-color: #fff;
}

textarea {
  min-height: 120px;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background-color: #ffffff;
  border-radius: 999px;
  padding: 8px;
  border: 1px solid #e3ded7;
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 20;
}

.sticky-cta span {
  font-size: 0.9rem;
  color: #4d4c49;
}

.legal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.legal-grid .panel {
  flex: 1 1 320px;
  background-color: #fff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #e8e2db;
}

.footer {
  background-color: #101412;
  color: #f6f3ef;
  padding: 40px 0;
}

.footer a {
  color: #e4f2ed;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer small {
  color: #c5c0b9;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background-color: #ffffff;
  border: 1px solid #d9d3cd;
  border-radius: 12px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .btn {
  padding: 10px 14px;
}

.page-hero {
  padding: 50px 0 40px;
}

.page-hero .hero-inner {
  align-items: flex-start;
}

.page-hero h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 10px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 600;
}

@media (max-width: 720px) {
  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: center;
  }
}
