* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1f;
  background-color: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  background: #ffffff;
  border-bottom: 1px solid #e4e1dc;
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f2efe9;
}

.nav a:hover,
.nav a:focus {
  background: #e3ded6;
}

.disclosure {
  font-size: 12px;
  background: #1b1b1f;
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.hero {
  display: flex;
  gap: 36px;
  align-items: center;
  padding: 48px 0;
}

.hero .content {
  flex: 1;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1b1b1f;
  color: #ffffff;
  font-weight: 600;
  border: 1px solid #1b1b1f;
}

.btn.light {
  background: transparent;
  color: #1b1b1f;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  padding: 48px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1;
}

.split .media {
  flex: 1;
}

.image-frame {
  background-color: #d8e2ed;
  border-radius: 24px;
  overflow: hidden;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e9e2d8;
  font-size: 12px;
  margin-bottom: 12px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.card h3 {
  font-size: 18px;
}

.card .price {
  font-weight: 700;
  color: #1b1b1f;
}

.card a {
  margin-top: auto;
  align-self: flex-start;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f2efe9;
}

.layered {
  background: #ffffff;
  border-radius: 28px;
  padding: 32px;
  margin-top: -40px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.section-bg {
  background-color: #151517;
  color: #ffffff;
  padding: 56px 0;
  border-radius: 32px;
  margin: 32px 0;
  background-size: cover;
  background-position: center;
}

.bg-mentors {
  background-image: url("https://images.unsplash.com/photo-1521737852567-6949f3f9f2b5?w=1400&q=80");
}

.section-bg .content {
  max-width: 720px;
  padding: 0 32px;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.testimonial {
  flex: 1 1 220px;
  background: #f2efe9;
  padding: 16px;
  border-radius: 16px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrap label {
  font-weight: 600;
  font-size: 14px;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8d2c8;
  font-size: 14px;
  background: #faf8f5;
}

.form-note {
  font-size: 12px;
  color: #4d4d57;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 90px;
  background: #1b1b1f;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  z-index: 20;
}

.footer {
  padding: 32px 24px 40px;
  background: #1b1b1f;
  color: #f3f1ed;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  margin-top: 18px;
}

.disclaimer {
  margin-top: 18px;
  font-size: 12px;
  color: #d7d0c5;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  color: #1b1b1f;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  padding: 10px 12px;
  border: 1px solid #1b1b1f;
  background: #1b1b1f;
  color: #ffffff;
  font-weight: 600;
}

.cookie-actions button.secondary {
  background: transparent;
  color: #1b1b1f;
}

.legal {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}

.legal h2 {
  margin-bottom: 12px;
}

.legal ul {
  margin-left: 18px;
  list-style: disc;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}

.contact-label {
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero,
  .split {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
