* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2428;
  background: #f7f4f1;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  background-color: #e8e2dd;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 6vw;
  background: #f7f4f1;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.85rem;
  background: #1f2428;
  color: #fff;
  padding: 6px 10px;
  border-radius: 16px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 6vw 70px;
  align-items: center;
}

.hero-text,
.hero-media {
  flex: 1 1 320px;
}

.hero-media {
  background: #e8e2dd;
  padding: 14px;
  border-radius: 22px;
}

.hero-media img {
  border-radius: 18px;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 16px;
}

.lead {
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 24px;
  border: 1px solid #1f2428;
  background: #1f2428;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn-outline {
  background: transparent;
  color: #1f2428;
}

.btn-light {
  background: #fff;
  color: #1f2428;
  border-color: #fff;
}

.btn:hover {
  transform: translateY(-2px);
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding: 60px 6vw;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 320px;
}

.split-media {
  background: #e8e2dd;
  padding: 14px;
  border-radius: 22px;
}

.split-media img {
  border-radius: 18px;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 12px;
}

.note {
  font-size: 0.95rem;
  color: #4c545a;
}

.services-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 280px;
}

.service-card img {
  border-radius: 16px;
  background: #e8e2dd;
}

.price {
  font-weight: 700;
}

.mid-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 55px 6vw;
  background: #1f2428;
  color: #fff;
  align-items: center;
}

.banner-image {
  background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2b2f33;
}

.mid-banner .btn {
  border-color: #fff;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.quote {
  flex: 1 1 260px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
}

.form-section {
  padding: 70px 6vw;
  background: #efe9e3;
}

.form-image {
  background: #e8e2dd;
  border-radius: 18px;
  overflow: hidden;
}

.form-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c8c2bc;
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #1f2428;
  color: #e8e2dd;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer small {
  color: #c9c1ba;
}

.floating-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 5;
  background: #ffcf70;
  color: #1f2428;
  border: none;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  max-width: 320px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.page-header {
  padding: 50px 6vw 20px;
}

.page-header.split {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.page-header-media {
  flex: 1 1 280px;
  background: #e8e2dd;
  border-radius: 18px;
  overflow: hidden;
}

.page-header-text {
  flex: 1 1 280px;
}

.content-block {
  padding: 30px 6vw 50px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.two-column > div {
  flex: 1 1 280px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-card {
  flex: 1 1 260px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
}

.hero-media img,
.split-media img,
.service-card img,
.content-block img {
  width: 100%;
  height: 100%;
}
