* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2a2e;
  background: #f4f1ec;
}

a {
  color: #1f2a2e;
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  background: #e6dfd2;
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.topbar .ad-label {
  font-weight: 600;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: #f4f1ec;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  padding: 6px 10px;
  border: 1px solid #1f2a2e;
  border-radius: 999px;
}

.hero {
  position: relative;
  padding: 80px 24px 120px;
  background: #cfd6d2;
  color: #111;
  overflow: hidden;
}

.hero.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  max-width: 520px;
  background: rgba(244, 241, 236, 0.9);
  padding: 32px;
  border-radius: 24px;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  background: #1f2a2e;
  color: #f4f1ec;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 12px;
  font-size: 14px;
}

.btn.secondary {
  background: transparent;
  color: #1f2a2e;
  border: 1px solid #1f2a2e;
}

.section {
  padding: 72px 24px;
}

.section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1 1 320px;
}

.asym-visual {
  flex: 1 1 320px;
  background-color: #d7d1c7;
  padding: 12px;
  border-radius: 24px;
}

.asym-visual img {
  width: 100%;
  border-radius: 18px;
}

.offset-box {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  margin-left: 40px;
  box-shadow: 0 16px 40px rgba(31, 42, 46, 0.12);
}

.offset-box.right {
  margin-left: 0;
  margin-right: 40px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-cta {
  margin-top: 18px;
}

.card .card-media {
  background: #d7d1c7;
}

.card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-tag {
  font-weight: 700;
  font-size: 18px;
}

.bg-workshop {
  background-image: url("https://images.unsplash.com/photo-1501183638710-841dd1904471?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f4f1ec;
}

.bg-workshop .offset-box {
  background: rgba(31, 42, 46, 0.88);
  color: #f4f1ec;
}

.bg-materials {
  background-image: url("https://images.unsplash.com/photo-1493666438817-866a91353ca9?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #1f2a2e;
}

.bg-materials .offset-box {
  background: rgba(244, 241, 236, 0.92);
}

.testimonial {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
}

.form-wrap {
  background: #fff;
  padding: 32px;
  border-radius: 28px;
  box-shadow: 0 16px 32px rgba(31, 42, 46, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid #b9b2a6;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  margin-top: auto;
  background: #1f2a2e;
  color: #f4f1ec;
  padding: 32px 24px;
}

.footer a {
  color: #f4f1ec;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #1f2a2e;
  color: #f4f1ec;
  padding: 12px 16px;
  border-radius: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 10;
}

.sticky-cta button {
  background: #f4f1ec;
  color: #1f2a2e;
  border: none;
  padding: 8px 12px;
  border-radius: 12px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 14px 28px rgba(31, 42, 46, 0.2);
  z-index: 11;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
}

.section-title {
  margin-top: 0;
}

.inline-cta {
  font-weight: 600;
}

.page-header {
  padding: 70px 24px 90px;
  background: #d7d1c7;
  background-size: cover;
  background-position: center;
}

.page-header .container {
  background: rgba(244, 241, 236, 0.9);
  padding: 24px;
  border-radius: 18px;
  max-width: 780px;
}

.services-hero {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
}

.about-hero {
  background-image: url("https://images.unsplash.com/photo-1524758631624-e2822e304c36?w=1400&q=80");
}

.contact-hero {
  background-image: url("https://images.unsplash.com/photo-1502005097973-6a7082348e28?w=1400&q=80");
}

.thanks-hero {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
}

.content-block {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.content-block.alt {
  background: #e9e2d8;
}

.image-inline {
  background: #d7d1c7;
  padding: 10px;
  border-radius: 18px;
}

.image-inline img {
  border-radius: 12px;
  width: 100%;
}

@media (max-width: 900px) {
  .offset-box {
    margin-left: 0;
  }

  .offset-box.right {
    margin-right: 0;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
    justify-content: space-between;
  }
}
