* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: #1c1f24;
  background: #f4f6f2;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #1f2a24;
  color: #f7f7f2;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  padding: 8px 10px;
  background: #2d3a32;
  border-radius: 6px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}

.nav a {
  padding: 8px 10px;
  background: #2c362f;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}

.nav a span {
  font-size: 12px;
  opacity: 0.7;
}

.sidebar-cta {
  margin-top: auto;
  padding: 14px;
  background: #efc27b;
  color: #1f2a24;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-cta a {
  background: #1f2a24;
  color: #efc27b;
  padding: 10px 12px;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 50px 60px 30px;
  background: #e8efe7;
  position: relative;
}

.hero .hero-media {
  display: flex;
  gap: 24px;
}

.image-box {
  background: #dbe4d6;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  width: 55%;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
}

.hero .hero-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
}

.hero .hero-card a {
  align-self: flex-start;
  padding: 10px 16px;
  background: #1f2a24;
  color: #fff;
  border-radius: 8px;
}

.section {
  padding: 42px 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section.alt {
  background: #ffffff;
}

.split {
  display: flex;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split img {
  width: 45%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
}

.split .text {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 12px;
  background: #dbe4d6;
  border-radius: 999px;
  font-size: 13px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: #f9faf7;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
}

.service-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: #1f2a24;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #1f2a24;
  color: #fff;
  padding: 26px 30px;
  border-radius: 14px;
}

.cta-band a {
  background: #efc27b;
  color: #1f2a24;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
}

.form-wrap {
  background: #ffffff;
  padding: 26px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

select,
input,
textarea,
button {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cdd6c7;
  font-size: 14px;
  font-family: inherit;
}

button {
  background: #1f2a24;
  color: #fff;
  border: none;
  cursor: pointer;
}

.image-strip {
  display: flex;
  gap: 18px;
}

.image-strip img {
  width: 33%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.footer {
  background: #141c18;
  color: #e5e8e3;
  padding: 32px 60px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer a {
  color: #efc27b;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #efc27b;
  color: #1f2a24;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  font-size: 13px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notice-box {
  border-left: 4px solid #efc27b;
  padding: 12px 16px;
  background: #f5efe3;
}

.legal-block {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-grid div {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero {
    padding: 40px 28px;
  }

  .hero .hero-media {
    flex-direction: column;
  }

  .hero img,
  .hero .hero-card,
  .split img,
  .split .text {
    width: 100%;
  }

  .section {
    padding: 32px 28px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
