* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1f1f;
  background: #f7f4ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  padding: 24px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  padding: 64px 6vw 48px;
  background: #152b29;
  color: #fef6eb;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero::after {
  content: "";
  position: absolute;
  right: 6vw;
  bottom: -40px;
  width: 240px;
  height: 240px;
  background: #f4c7a2;
  opacity: 0.6;
  border-radius: 38% 62% 47% 53%;
}

.hero-content {
  max-width: 620px;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.btn-light {
  background: #fef6eb;
  color: #142322;
}

.btn-outline {
  border-color: #fef6eb;
  color: #fef6eb;
  background: transparent;
}

.section {
  padding: 72px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.light {
  background: #ffffff;
}

.section.soft {
  background: #f4efe7;
}

.section.dark {
  background: #10221f;
  color: #fef6eb;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.asym-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(16, 34, 31, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.asym-card.dark {
  background: #16312d;
  color: #fef6eb;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  border: 1px solid #e4dcd0;
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fffdf9;
}

.service-card h3 {
  font-size: 1.2rem;
}

.price-tag {
  font-weight: 700;
  color: #153531;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 3px solid #f3b784;
  padding-left: 18px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-marker {
  width: 12px;
  height: 12px;
  background: #f3b784;
  border-radius: 50%;
  margin-top: 6px;
}

.enroll-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(16, 34, 31, 0.12);
}

.enroll-form label {
  font-size: 0.9rem;
  font-weight: 600;
}

.enroll-form input,
.enroll-form select,
.enroll-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6cbbd;
  font-size: 0.95rem;
  background: #fffdf9;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cta-inline {
  color: #103f39;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #f3b784;
  color: #10221f;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(16, 34, 31, 0.2);
  z-index: 10;
}

.footer {
  padding: 32px 6vw 48px;
  background: #0d1b1a;
  color: #e9e0d3;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e4dcd0;
  padding: 16px 6vw;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 20;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border-radius: 999px;
  border: 1px solid #153531;
  background: transparent;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: #153531;
  color: #ffffff;
}

.page-hero {
  padding: 56px 6vw 40px;
  background: #f4efe7;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-hero h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.content-columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.content-block {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(16, 34, 31, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 600;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .hero-media {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    z-index: 1;
  }

  .hero-content {
    flex: 1.1;
  }

  .asym-row {
    flex-direction: row;
    align-items: stretch;
  }

  .asym-row.reverse {
    flex-direction: row-reverse;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1;
    min-width: 220px;
  }

  .timeline {
    flex-direction: row;
  }

  .timeline-item {
    flex: 1;
  }

  .content-columns {
    flex-direction: row;
  }

  .content-block {
    flex: 1;
  }
}
