* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1b1b1b;
  background: #f7f5f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw 16px;
  position: relative;
}

.nav__brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.nav__cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: #1b1b1b;
  color: #f7f5f2;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 32px 6vw 56px;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__title {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero__subtitle {
  max-width: 560px;
  font-size: 1.05rem;
}

.hero__actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid #1b1b1b;
  background: #f0d894;
  font-weight: 600;
}

.btn--dark {
  background: #1b1b1b;
  color: #f7f5f2;
}

.hero__image {
  position: relative;
  max-width: 520px;
  margin-left: auto;
}

.hero__image img {
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.hero__badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: #1b1b1b;
  color: #f7f5f2;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
}

.section {
  padding: 56px 6vw;
  position: relative;
}

.section--light {
  background: #ffffff;
}

.section--offset-left::before,
.section--offset-right::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 70%;
  background: #efe9df;
  top: 12%;
  z-index: 0;
}

.section--offset-left::before {
  left: -20%;
}

.section--offset-right::before {
  right: -20%;
}

.section__content {
  position: relative;
  z-index: 1;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split__panel {
  flex: 1;
}

.inline-link {
  font-weight: 600;
  border-bottom: 2px solid #1b1b1b;
  padding-bottom: 2px;
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.story-card img {
  border-radius: 12px;
}

.pathway {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pathway__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pathway__index {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1b1b1b;
  color: #f7f5f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.trust {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust__stat {
  background: #f0d894;
  padding: 18px;
  border-radius: 14px;
  font-weight: 600;
}

.testimonial {
  background: #ffffff;
  padding: 16px 18px;
  border-left: 4px solid #1b1b1b;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card__price {
  font-weight: 700;
  font-size: 1.2rem;
}

.service-card__cta {
  align-self: flex-start;
}

.format {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.format__image {
  border-radius: 20px;
  overflow: hidden;
}

.enroll {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #1b1b1b;
  color: #f7f5f2;
  border-radius: 24px;
  padding: 28px;
}

.enroll__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.enroll__form label {
  font-weight: 600;
}

.enroll__form input,
.enroll__form select,
.enroll__form textarea {
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
}

.enroll__form button {
  border: none;
  cursor: pointer;
}

.footer {
  padding: 32px 6vw 48px;
  background: #141414;
  color: #f7f5f2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #f0d894;
  color: #1b1b1b;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  font-weight: 700;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #d6d1c8;
  padding: 16px 6vw;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 9;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-banner button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #1b1b1b;
  background: #f7f5f2;
  cursor: pointer;
  font-weight: 600;
}

.cookie-banner button.accept {
  background: #1b1b1b;
  color: #f7f5f2;
}

.page-header {
  padding: 32px 6vw 12px;
}

.page-header h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.page-section {
  padding: 32px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  max-width: 520px;
}

.map-placeholder {
  background: #efe9df;
  border-radius: 16px;
  padding: 28px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
  }

  .story-grid {
    flex-direction: row;
  }

  .story-card {
    flex: 1;
  }

  .services {
    flex-direction: row;
  }

  .service-card {
    flex: 1;
  }

  .format {
    flex-direction: row;
    align-items: center;
  }

  .enroll {
    flex-direction: row;
  }

  .enroll__form,
  .enroll__details {
    flex: 1;
  }
}
