* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1f24;
  background-color: #f6f4f0;
  line-height: 1.6;
}

a {
  color: #1b4d3e;
  text-decoration: none;
}

a:hover,
button:hover {
  filter: brightness(0.95);
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background-color: #efe8dc;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand h1 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0.6px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  background-color: #1b4d3e;
  color: #fff;
  border-radius: 12px;
  display: inline-flex;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-list a {
  font-weight: 600;
}

.content {
  flex: 1;
  padding: 40px 64px 80px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.hero {
  padding: 56px;
  border-radius: 28px;
  color: #f9f7f2;
  background-color: #2d5b47;
  background-image: url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b?w=1400&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 320px;
}

.thankyou-hero {
  padding: 56px;
  border-radius: 28px;
  color: #f9f7f2;
  background-color: #4a5c6a;
  background-image: url("https://images.unsplash.com/photo-1491841573634-28140fc7ced7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 320px;
}

.hero .hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button-primary {
  background-color: #f7c873;
  color: #3a2a0b;
  padding: 12px 18px;
  border-radius: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button-secondary {
  background-color: rgba(255, 255, 255, 0.9);
  color: #1b4d3e;
  padding: 12px 18px;
  border-radius: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.inline-media,
.card-media,
.about-media {
  background-color: #e6ddd0;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
}

.inline-media img,
.card-media img,
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.inline-media {
  width: 45%;
  min-height: 240px;
}

.text-block {
  flex: 1;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 220px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 24px rgba(20, 24, 18, 0.08);
}

.card-media {
  height: 160px;
}

.price {
  font-weight: 700;
  color: #1b4d3e;
}

.cta-band {
  padding: 40px;
  border-radius: 28px;
  color: #1d1f24;
  background-color: #ead1c1;
  background-image: url("https://images.unsplash.com/photo-1472289065668-ce650ac443d2?w=1400&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-section {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 14px 28px rgba(25, 26, 29, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c9c1b6;
  font-family: inherit;
}

.form-note {
  font-size: 13px;
  color: #5b5b5b;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.sticky-cta a {
  background-color: #1b4d3e;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 18px;
  font-weight: 600;
  display: inline-flex;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background-color: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 12px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.services-hero {
  padding: 36px;
  border-radius: 24px;
  color: #f9f7f2;
  background-color: #3d4a5d;
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.about-media {
  width: 40%;
  min-height: 260px;
}

footer {
  padding-bottom: 40px;
  color: #4d4d4d;
  font-size: 14px;
}

.references a {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .content {
    padding: 32px 24px 80px;
  }

  .split,
  .split.reverse,
  .form-section {
    flex-direction: column;
  }

  .inline-media,
  .about-media {
    width: 100%;
  }
}
