@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #faf8f5;
  --beige: #f0ece4;
  --beige-mid: #e8e0d4;
  --primary: #c17f6a;
  --primary-dark: #a8674f;
  --primary-light: #d9a08e;
  --text: #2d2420;
  --text-muted: #6b5c56;
  --sage: #8a9e7a;
  --sage-dark: #6e8460;
  --white: #ffffff;
  --border: rgba(45,36,32,0.12);
  --shadow: 0 4px 24px rgba(45,36,32,0.08);
  --shadow-lg: 0 8px 48px rgba(45,36,32,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
}

.nav__logo span {
  color: var(--sage-dark);
}

.nav__cta {
  background: var(--primary);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.nav__cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  padding: 72px 0 80px;
  overflow: hidden;
  position: relative;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--beige);
  border: 1px solid var(--beige-mid);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero__tag::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
}

.hero__title {
  font-size: 2.9rem;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero__title em {
  color: var(--primary);
  font-style: italic;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 440px;
  line-height: 1.7;
}

.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__image-badge-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.hero__image-badge-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.hero__image-badge-text span {
  display: block;
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.73rem;
}

/* ── FORM ── */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form-card__title {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.form-card__sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--beige-mid);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(193,127,106,0.15);
  background: var(--white);
}

.form-group input::placeholder {
  color: #b0a09a;
}

.btn-primary {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: 6px;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168,103,79,0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.form-note {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.4;
}

/* ── SECTION COMMON ── */
.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--beige);
}

.section__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.section__title {
  font-size: 2.1rem;
  margin-bottom: 14px;
  color: var(--text);
}

.section__sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

/* ── BENEFITS ── */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}

.benefit-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.benefit-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.benefit-card__title {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text);
}

.benefit-card__text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── WHAT YOU'LL MAKE ── */
.makes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.make-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}

.make-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.make-card__img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.make-card__body {
  padding: 16px;
}

.make-card__name {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}

.make-card__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── AUDIENCE ── */
.audience__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.audience__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
}

.audience__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audience__list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.audience__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.audience__item-check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  margin-top: 2px;
}

.audience__item-text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
}

/* ── CURRICULUM ── */
.curriculum__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.module-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}

.module-card:hover {
  box-shadow: var(--shadow);
}

.module-card__num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--beige);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.module-card__content {}

.module-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}

.module-card__desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── FORMAT ── */
.format__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.format-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.format-item__icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.format-item__title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.format-item__text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── RESULTS ── */
.results__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.results__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.results__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.results__list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.results__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.results__item-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  margin-top: 6px;
}

.results__item-text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
}

/* ── TEACHER ── */
.teacher__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}

.teacher__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
}

.teacher__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teacher__name {
  font-size: 1.8rem;
  margin-bottom: 4px;
  color: var(--text);
}

.teacher__title {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 24px;
}

.teacher__bio {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.teacher__facts {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.teacher__fact {
  text-align: left;
}

.teacher__fact-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.teacher__fact-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 100px;
  line-height: 1.35;
}

/* ── FAQ ── */
.faq__list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 780px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-size: 0.975rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.15s;
}

.faq-item__question:hover {
  background: var(--cream);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  transition: transform 0.3s, background 0.2s;
  font-weight: 300;
  line-height: 1;
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: var(--white);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  padding: 0 24px;
}

.faq-item.open .faq-item__answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-item__answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0;
  color: var(--white);
}

.cta-section__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.cta-section__title {
  font-size: 2.3rem;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-section__sub {
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.7;
}

.cta-section .form-card {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  box-shadow: none;
}

.cta-section .form-card__title {
  color: var(--white);
}

.cta-section .form-card__sub {
  color: rgba(255,255,255,0.75);
}

.cta-section .form-group label {
  color: rgba(255,255,255,0.7);
}

.cta-section .form-group input,
.cta-section .form-group select {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}

.cta-section .form-group input::placeholder {
  color: rgba(255,255,255,0.5);
}

.cta-section .form-group input:focus,
.cta-section .form-group select:focus {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.15);
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--primary-dark);
}

.cta-section .btn-primary:hover {
  background: var(--cream);
}

.cta-section .form-note {
  color: rgba(255,255,255,0.6);
}

/* ── FOOTER ── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding: 48px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.footer__brand-sub {
  font-size: 0.82rem;
  opacity: 0.65;
  line-height: 1.5;
}

.footer__heading {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a {
  font-size: 0.875rem;
  opacity: 0.75;
  transition: opacity 0.15s;
}

.footer__links a:hover {
  opacity: 1;
}

.footer__company {
  font-size: 0.8rem;
  opacity: 0.55;
  line-height: 1.65;
}

.footer__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  opacity: 0.5;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--text);
  color: var(--white);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__text {
  font-size: 0.875rem;
  line-height: 1.5;
  opacity: 0.9;
}

.cookie-banner__text a {
  color: var(--primary-light);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__accept {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.cookie-banner__accept:hover {
  background: var(--primary-dark);
}

/* ── INNER PAGES (legal) ── */
.page-hero {
  background: var(--beige);
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.page-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  transition: color 0.15s;
}

.page-hero__back:hover {
  color: var(--primary);
}

.page-hero__title {
  font-size: 2.2rem;
  color: var(--text);
}

.page-hero__date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.legal-content {
  padding: 60px 0 80px;
  max-width: 760px;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin: 36px 0 12px;
  color: var(--text);
}

.legal-content h3 {
  font-size: 1.05rem;
  margin: 24px 0 8px;
  color: var(--text);
}

.legal-content p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-content ul, .legal-content ol {
  margin: 8px 0 16px 20px;
}

.legal-content li {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}

/* ── SUCCESS PAGE ── */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}

.success-card {
  max-width: 520px;
  width: 100%;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.success-card__icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 28px;
  box-shadow: 0 8px 24px rgba(193,127,106,0.3);
}

.success-card__title {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--text);
}

.success-card__text {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.success-card__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--cream);
  border: 1.5px solid var(--beige-mid);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}

.success-card__back:hover {
  border-color: var(--primary);
  background: var(--beige);
  color: var(--primary-dark);
}

/* ── SCROLL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__subtitle {
    max-width: none;
  }

  .hero__image-wrap {
    max-height: 360px;
  }

  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .makes__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .audience__image {
    max-height: 360px;
    order: -1;
  }

  .curriculum__grid {
    grid-template-columns: 1fr;
  }

  .format__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .results__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .teacher__inner {
    grid-template-columns: 1fr;
  }

  .teacher__photo {
    max-height: 400px;
    aspect-ratio: 3/2;
  }

  .cta-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .nav__cta {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .hero {
    padding: 48px 0 60px;
  }

  .hero__title {
    font-size: 1.85rem;
  }

  .section {
    padding: 56px 0;
  }

  .section__title {
    font-size: 1.7rem;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .makes__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .format__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-section__title {
    font-size: 1.75rem;
  }

  .teacher__facts {
    gap: 20px;
  }

  .success-card {
    padding: 40px 28px;
  }
}
