/* ===========================
   BEADJEWEL — Global Styles
   =========================== */

@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');

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #faf8f5;
  --cream-dark: #f2ede6;
  --terracotta: #c4885a;
  --terracotta-dark: #a36d44;
  --terracotta-light: #ecd9c9;
  --brown: #2c1f14;
  --brown-mid: #6b5545;
  --brown-light: #9c7b6a;
  --white: #ffffff;
  --border: #e0d4ca;
  --shadow: rgba(44, 31, 20, 0.08);
  --shadow-md: rgba(44, 31, 20, 0.14);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --max-w: 1100px;
  --section-py: 80px;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--brown);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ---- Container ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--brown);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p {
  color: var(--brown-mid);
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--brown-mid);
  max-width: 560px;
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius);
  padding: 13px 28px;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  text-align: center;
}

.btn-primary {
  background-color: var(--terracotta);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--terracotta-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 136, 90, 0.35);
}

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

.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border: 1.5px solid var(--terracotta);
}

.btn-outline:hover {
  background-color: var(--terracotta);
  color: var(--white);
}

.btn-lg {
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: var(--radius-lg);
}

/* ===========================
   HEADER / NAV
   =========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

.site-header.scrolled {
  box-shadow: 0 2px 16px var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: -0.01em;
}

.logo span {
  color: var(--terracotta);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--brown-mid);
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--terracotta);
}

.nav-cta {
  margin-left: 8px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  gap: 20px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 1rem;
  color: var(--brown);
  font-weight: 400;
}

.mobile-nav .btn {
  align-self: flex-start;
}

/* ===========================
   HERO
   =========================== */
.hero {
  padding-top: 64px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #faf8f5 55%, #f2ede6 100%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.hero-content {
  max-width: 520px;
}

.hero-tag {
  display: inline-block;
  background: var(--terracotta-light);
  color: var(--terracotta-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-title {
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 0.82rem;
  color: var(--brown-light);
  margin-top: 14px;
}

.hero-img-wrap {
  position: relative;
}

.hero-img-wrap img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 60px var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.hero-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  box-shadow: 0 8px 24px var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 220px;
}

.hero-badge-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.hero-badge-text strong {
  font-family: var(--font-serif);
  font-size: 1rem;
  display: block;
  color: var(--brown);
}

.hero-badge-text span {
  font-size: 0.8rem;
  color: var(--brown-light);
}

/* ===========================
   FOR WHOM
   =========================== */
.for-whom {
  padding: var(--section-py) 0;
  background: var(--white);
}

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

.for-whom-img img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 48px var(--shadow);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.for-whom-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.for-whom-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.for-whom-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: var(--terracotta);
  margin-top: 6px;
}

.for-whom-item p {
  font-size: 0.97rem;
  line-height: 1.6;
}

.for-whom-item p strong {
  color: var(--brown);
  font-weight: 600;
}

/* ===========================
   WHAT YOU MAKE
   =========================== */
.what-you-make {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.what-you-make .section-header {
  margin-bottom: 48px;
  text-align: center;
}

.what-you-make .section-subtitle {
  margin: 0 auto;
  text-align: center;
}

.make-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

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

.make-card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.make-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.make-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===========================
   PROGRAM
   =========================== */
.program {
  padding: var(--section-py) 0;
  background: var(--white);
}

.program-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.program-img img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 48px var(--shadow);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.program-modules {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 32px;
}

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

.module-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  background: var(--white);
  transition: background 0.15s;
  user-select: none;
}

.module-header:hover {
  background: var(--cream);
}

.module-num {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 0.06em;
  min-width: 32px;
}

.module-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--brown);
  flex: 1;
  padding: 0 12px;
}

.module-arrow {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-light);
  transition: transform 0.25s;
  flex-shrink: 0;
}

.module-item.open .module-arrow {
  transform: rotate(180deg);
}

.module-body {
  display: none;
  padding: 0 20px 16px 52px;
  font-size: 0.9rem;
  color: var(--brown-mid);
  line-height: 1.65;
  border-top: 1px solid var(--border);
  background: var(--cream);
}

.module-item.open .module-body {
  display: block;
}

/* ===========================
   LEARNING OUTCOMES
   =========================== */
.outcomes {
  padding: var(--section-py) 0;
  background: var(--terracotta);
}

.outcomes .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.outcomes .section-title {
  color: var(--white);
}

.outcomes .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 48px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.outcome-item {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.outcome-check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.outcome-check svg {
  width: 14px;
  height: 14px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.outcome-item p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
}

/* ===========================
   INSTRUCTOR
   =========================== */
.instructor {
  padding: var(--section-py) 0;
  background: var(--cream);
}

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

.instructor-img img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 48px var(--shadow);
  object-fit: cover;
  aspect-ratio: 3/4;
}

.instructor-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 4px;
}

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

.instructor-bio {
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.instructor-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.instructor-fact {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
  text-align: center;
}

.instructor-fact strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--terracotta);
}

.instructor-fact span {
  font-size: 0.78rem;
  color: var(--brown-light);
  white-space: nowrap;
}

/* ===========================
   LEAD FORM
   =========================== */
.lead-form-section {
  padding: var(--section-py) 0;
  background: var(--cream-dark);
}

.form-wrap {
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  box-shadow: 0 20px 60px var(--shadow);
}

.form-header {
  text-align: center;
  margin-bottom: 36px;
}

.form-header h2 {
  margin-bottom: 10px;
}

.form-header p {
  font-size: 0.95rem;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--brown);
}

.form-group input,
.form-group select {
  font-family: var(--font-sans);
  font-size: 0.97rem;
  color: var(--brown);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--terracotta);
  background: var(--white);
}

.form-group input::placeholder {
  color: var(--brown-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
}

.form-consent {
  font-size: 0.78rem;
  color: var(--brown-light);
  line-height: 1.5;
  text-align: center;
  margin-top: 4px;
}

.form-consent a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===========================
   FAQ
   =========================== */
.faq {
  padding: var(--section-py) 0;
  background: var(--white);
}

.faq .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq .section-subtitle {
  margin: 0 auto;
  text-align: center;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  background: var(--white);
  transition: background 0.15s;
  user-select: none;
}

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

.faq-q span {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--brown);
  padding-right: 16px;
  line-height: 1.4;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-light);
  transition: transform 0.25s;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 0.93rem;
  color: var(--brown-mid);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  background: var(--cream);
}

.faq-item.open .faq-a {
  display: block;
}

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

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  max-width: 240px;
  line-height: 1.6;
}

.footer-nav h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.15s;
}

.footer-nav a:hover {
  color: var(--white);
}

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

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal-text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.15s;
}

.footer-legal-links a:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* ===========================
   COOKIES BANNER
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 640px;
  margin: 0 auto;
  background: var(--brown);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: none;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-text {
  flex: 1;
  min-width: 200px;
}

.cookie-text p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
  margin-bottom: 4px;
}

.cookie-text a {
  color: var(--terracotta-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: var(--terracotta);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 9px 20px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-cookie-accept:hover {
  background: var(--terracotta-dark);
}

.btn-cookie-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 8px;
  font-size: 1.2rem;
  line-height: 1;
  transition: color 0.15s;
}

.btn-cookie-close:hover {
  color: var(--white);
}

/* ===========================
   LEGAL PAGES
   =========================== */
.legal-page {
  padding-top: 64px;
}

.legal-hero {
  background: var(--cream-dark);
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
}

.legal-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 8px;
}

.legal-hero p {
  font-size: 0.9rem;
  color: var(--brown-light);
}

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

.legal-content h2 {
  font-size: 1.3rem;
  margin: 36px 0 12px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-content ul li {
  font-size: 0.95rem;
  color: var(--brown-mid);
  line-height: 1.65;
}

.legal-content a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-back {
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--terracotta);
  transition: gap 0.15s;
}

.legal-back:hover {
  gap: 10px;
}

/* ===========================
   SUCCESS PAGE
   =========================== */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--cream);
}

.success-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.success-card {
  max-width: 520px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px 44px;
  box-shadow: 0 20px 60px var(--shadow);
}

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--terracotta-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2rem;
}

.success-card h1 {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.success-card p {
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  :root {
    --section-py: 60px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0 60px;
  }

  .hero-img-wrap {
    order: -1;
  }

  .hero-badge {
    display: none;
  }

  .for-whom-inner,
  .program-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .for-whom-img {
    display: none;
  }

  .instructor-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .instructor-img {
    max-width: 320px;
  }

  .instructor-img img {
    aspect-ratio: 4/3;
  }

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

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

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .make-grid {
    grid-template-columns: 1fr;
  }

  .form-wrap {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

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

  .cookie-banner {
    flex-direction: column;
    bottom: 16px;
    left: 16px;
    right: 16px;
  }

  .instructor-facts {
    flex-direction: row;
    gap: 10px;
  }
}
