* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1a1a1a;
  background-color: #f6f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  background-color: #121212;
  color: #f5f1ec;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.ad-label {
  font-size: 0.85rem;
  color: #f0d6a5;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-list a {
  font-size: 0.95rem;
  padding: 6px 0;
}

.nav-list a:hover,
.primary-btn:hover,
.ghost-btn:hover,
.inline-link:hover {
  color: #f0d6a5;
}

.sidebar-cta {
  margin-top: auto;
  background-color: #1f1f1f;
  padding: 16px;
  border-radius: 12px;
}

.sidebar-cta p {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  background-color: #f0d6a5;
  color: #1a1a1a;
}

.ghost-btn {
  background-color: transparent;
  color: #f0d6a5;
  border: 1px solid #f0d6a5;
}

.content {
  flex: 1;
  padding: 36px 52px 80px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: 2.6rem;
  max-width: 680px;
}

.hero-grid {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-image {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  background-color: #d5d0c7;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-title {
  font-size: 1.8rem;
  max-width: 640px;
}

.feature-row {
  display: flex;
  gap: 24px;
  align-items: center;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-card {
  flex: 1;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-card img {
  border-radius: 12px;
  background-color: #ded7ce;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 260px;
  background-color: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.service-card img {
  border-radius: 12px;
  background-color: #ddd3c7;
}

.price-tag {
  font-weight: 700;
  color: #2f3c2b;
}

.inline-link {
  color: #2b4d9d;
  font-weight: 600;
}

.image-band {
  background-color: #161616;
  color: #f7f2ea;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.image-band img {
  width: 220px;
  height: 180px;
  border-radius: 16px;
  background-color: #4a4a4a;
}

.testimonials {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.testimonial {
  flex: 1 1 200px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.bg-panel {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 30px;
  color: #f7f2ea;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bg-panel-alt {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 28px;
  color: #f7f2ea;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bg-panel-soft {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 28px;
  color: #f7f2ea;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-section {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #cfc7bc;
  font-size: 0.95rem;
  width: 100%;
}

.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  background-color: #2b4d9d;
  color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.sticky-cta button {
  background-color: #f0d6a5;
  color: #1a1a1a;
}

.legal {
  font-size: 0.9rem;
  color: #3c3c3c;
}

.footer {
  border-top: 1px solid #ddd3c7;
  padding-top: 20px;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  display: none;
  max-width: 320px;
  z-index: 10;
}

.cookie-banner p {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.secondary-btn {
  background-color: #1a1a1a;
  color: #ffffff;
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.light-btn {
  background-color: #e6dfd6;
  color: #1a1a1a;
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.page-title {
  font-size: 2.2rem;
}

.two-column {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.two-column .column {
  flex: 1;
}

.image-card {
  border-radius: 16px;
  overflow: hidden;
  background-color: #d7d1c6;
}

.image-card img {
  width: 100%;
  height: 100%;
}

.address-block {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.no-email-link {
  font-weight: 600;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .content {
    padding: 28px 24px 60px;
  }

  .hero-grid,
  .feature-row,
  .two-column {
    flex-direction: column;
  }

  .sticky-cta {
    position: relative;
  }
}
