* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e1f22;
  background: #f7f6f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6%;
  background: #f7f6f2;
  border-bottom: 1px solid #dedad1;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 20px;
  letter-spacing: 1px;
}

.brand span {
  font-size: 12px;
  text-transform: uppercase;
  color: #6a6f73;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  background: #1e1f22;
  color: #f7f6f2;
  border-radius: 20px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 6% 50px;
  gap: 36px;
  align-items: stretch;
}

.hero-content,
.hero-media {
  flex: 1 1 340px;
}

.hero-media {
  border-radius: 28px;
  overflow: hidden;
  background: #d8d2c5;
  min-height: 360px;
}

.hero h1 {
  font-size: 38px;
  margin: 0 0 18px;
  line-height: 1.2;
}

.hero p {
  font-size: 17px;
  margin: 0 0 18px;
  color: #373b40;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  padding: 12px 20px;
  border-radius: 24px;
  border: 1px solid #1e1f22;
  background: #1e1f22;
  color: #f7f6f2;
  cursor: pointer;
  font-size: 14px;
}

.btn.secondary {
  background: transparent;
  color: #1e1f22;
}

.section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 56px 6%;
  align-items: center;
}

.section.alt {
  background: #eef1ec;
}

.section .text,
.section .media {
  flex: 1 1 320px;
}

.section .media {
  border-radius: 24px;
  overflow: hidden;
  background: #c9d4d0;
  min-height: 260px;
}

.section h2 {
  margin: 0 0 12px;
  font-size: 30px;
}

.section p {
  margin: 0 0 14px;
  color: #3c434a;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e0ddd5;
}

.service-card .thumb {
  width: 110px;
  height: 90px;
  border-radius: 14px;
  overflow: hidden;
  background: #d3d8cf;
  flex-shrink: 0;
}

.service-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.price {
  font-weight: 700;
  color: #0f3d2e;
}

.form-panel {
  background: #1f2e25;
  color: #f7f6f2;
  padding: 26px;
  border-radius: 22px;
}

.form-panel label {
  font-size: 13px;
  display: block;
  margin-bottom: 6px;
}

.form-panel input,
.form-panel select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  margin-bottom: 12px;
}

.form-panel button {
  width: 100%;
  border: none;
}

.highlight {
  background: #fff4da;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid #ecd9a1;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-left: 4px solid #1f2e25;
}

.footer {
  padding: 40px 6%;
  background: #1e1f22;
  color: #f7f6f2;
  margin-top: auto;
}

.footer a {
  color: #f7f6f2;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer small {
  color: #cbd0d4;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #0f3d2e;
  color: #f7f6f2;
  padding: 12px 18px;
  border-radius: 30px;
  z-index: 20;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid #d8d2c5;
  padding: 16px 18px;
  border-radius: 16px;
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 18px;
  border: 1px solid #1e1f22;
  background: #1e1f22;
  color: #f7f6f2;
  cursor: pointer;
  font-size: 12px;
}

.cookie-actions button.secondary {
  background: transparent;
  color: #1e1f22;
}

.legal-section {
  padding: 50px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-section h1 {
  margin: 0;
  font-size: 32px;
}

.simple-hero {
  padding: 48px 6%;
  background: #eef1ec;
}

.simple-hero h1 {
  margin: 0 0 12px;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  background: #ffffff;
  border: 1px solid #e0ddd5;
  border-radius: 18px;
  padding: 18px;
  flex: 1 1 240px;
}

.split-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.muted {
  color: #6a6f73;
}

@media (max-width: 860px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav-links {
    flex-wrap: wrap;
  }
}
