*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1e252b;
  background: #f7f4ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 28px 22px;
  background: #f0ebe2;
  border-right: 1px solid #ddd3c5;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.82rem;
  padding: 10px 12px;
  background: #fff2d9;
  border-radius: 10px;
  color: #5a3b14;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e3d8c7;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  background: #f6e6d1;
  transform: translateX(2px);
}

.sidebar .contact-summary {
  font-size: 0.9rem;
  color: #4b535a;
}

.content {
  flex: 1;
  padding: 36px 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff8f0;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 16px 40px rgba(24, 31, 36, 0.1);
}

.hero .hero-row {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1 1 320px;
  border-radius: 22px;
  overflow: hidden;
  background: #e3d6c8;
}

.hero-text {
  flex: 1 1 280px;
}

.hero-text h1 {
  margin: 0 0 10px;
  font-size: 2.4rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #1e252b;
  background: #1e252b;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.secondary {
  background: #fff;
  color: #1e252b;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.split {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.split .panel {
  flex: 1 1 260px;
  padding: 24px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #eadfce;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #eadfce;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  border-radius: 16px;
  overflow: hidden;
  background: #d9c9bc;
}

.price {
  font-weight: 700;
  color: #0f3d36;
}

.highlight {
  background: #f2efe8;
  border-radius: 20px;
  padding: 28px;
}

.highlight .highlight-row {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.highlight .highlight-image {
  flex: 1 1 260px;
  border-radius: 20px;
  overflow: hidden;
  background: #cfd6d1;
}

.highlight .highlight-text {
  flex: 1 1 260px;
}

.testimonial {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #eadfce;
}

.form-section {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid #eadfce;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9c1b4;
  font: inherit;
  background: #faf8f5;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
}

.sticky-cta a {
  background: #c95f3a;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px solid #a04a2d;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.sticky-cta a:hover {
  transform: translateY(-2px);
}

.footer {
  font-size: 0.9rem;
  color: #4b535a;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid #ded2c1;
  padding-top: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid #eadfce;
  border-radius: 16px;
  padding: 16px;
  max-width: 340px;
  z-index: 40;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.15);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  border: 1px solid #1e252b;
  padding: 10px 12px;
  cursor: pointer;
  background: #1e252b;
  color: #fff;
  font: inherit;
}

.cookie-actions button.secondary {
  background: #ffffff;
  color: #1e252b;
}

.page-hero {
  background: #fff8f0;
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-hero .hero-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}

.page-hero .page-image {
  flex: 1 1 280px;
  border-radius: 18px;
  overflow: hidden;
  background: #dbcbbf;
}

.page-hero .page-text {
  flex: 1 1 260px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #eadfce;
  padding: 20px;
}

.service-item .service-image {
  flex: 1 1 220px;
  border-radius: 16px;
  overflow: hidden;
  background: #d7cec2;
}

.service-item .service-details {
  flex: 2 1 280px;
}

.contact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #eadfce;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .content {
    padding: 28px 24px 100px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
