:root {
      --c-red: #C94A2A;
      --c-green: #2A5C4E;
      --c-charcoal: #2C2625;
      --c-cream: #FBF7F2;
      --c-cream-dark: #F0EAE2;
      --c-white: #FFFFFF;
      --font-header: 'Playfair Display', serif;
      --font-body: 'Space Grotesk', sans-serif;
      --radius: 20px 10px 24px 8px;
    }

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

    body {
      background: var(--c-cream);
      color: var(--c-charcoal);
      font-family: var(--font-body);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .container {
      max-width: 1440px;
      width: 100%;
      margin: 0 auto;
      padding: 0 60px;
    }
    nav {
      padding: 30px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      margin: 0;
    }
    .logo {
      font-family: var(--font-header);
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--c-charcoal);
      text-decoration: none;
      letter-spacing: -0.02em;
    }
    .nav-links a {
      margin-left: 40px;
      text-decoration: none;
      color: var(--c-charcoal);
      font-size: 1rem;
      font-weight: 500;
      opacity: 0.7;
      transition: opacity 0.2s;
    }
    .nav-links a:hover { opacity: 1; color: var(--c-red); }

    main {
      flex: 1;
      max-width: 900px;
      width: 100%;
      margin: 0 auto;
      padding: 60px 40px 100px;
    }

    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--c-charcoal);
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 500;
      opacity: 0.55;
      transition: opacity 0.2s;
      margin-bottom: 40px;
    }
    .back-link:hover { opacity: 1; }
    .back-link svg { width: 14px; height: 14px; }

    .page-header { margin-bottom: 48px; }
    .page-header .label {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--c-green);
      margin-bottom: 10px;
    }
    .page-header h1 {
      font-family: var(--font-header);
      font-size: clamp(2rem, 4vw, 2.8rem);
      color: var(--c-charcoal);
      margin-bottom: 12px;
    }
    .page-header p {
      font-size: 1.05rem;
      color: var(--c-charcoal);
      opacity: 0.6;
      max-width: 600px;
    }

    .content-section { margin-bottom: 40px; }
    .content-section h2 {
      font-family: var(--font-header);
      font-size: 1.5rem;
      color: var(--c-charcoal);
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(44,38,37,0.08);
    }
    .content-section p {
      font-size: 0.95rem;
      color: var(--c-charcoal);
      opacity: 0.8;
      margin-bottom: 12px;
      line-height: 1.7;
    }
    .content-section a {
      color: var(--c-red);
      text-decoration: none;
      font-weight: 500;
    }
    .content-section a:hover { text-decoration: underline; }

    .course-list {
      background: var(--c-white);
      border-radius: var(--radius);
      border: 1px solid rgba(44,38,37,0.06);
      box-shadow: 5px 10px 30px rgba(44,38,37,0.04);
      overflow: hidden;
      margin: 24px 0;
    }
    .course-list-item {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 12px 24px;
      border-bottom: 1px solid rgba(44,38,37,0.05);
      gap: 16px;
    }
    .course-list-item:last-child { border-bottom: none; }
    .course-name {
      font-size: 0.9rem;
      color: var(--c-charcoal);
      opacity: 0.85;
    }
    .course-price {
      font-size: 0.8rem;
      color: var(--c-charcoal);
      opacity: 0.4;
      white-space: nowrap;
      font-weight: 500;
    }

    .highlight-box {
      background: var(--c-white);
      border-left: 4px solid var(--c-green);
      border-radius: 0 12px 12px 0;
      padding: 20px 24px;
      margin: 24px 0;
    }
    .highlight-box p { font-size: 0.95rem; color: var(--c-charcoal); opacity: 0.85; line-height: 1.7; }
    .highlight-box strong { color: var(--c-green); font-weight: 600; }

    .value-box {
      background: var(--c-white);
      border-radius: var(--radius);
      border: 1px solid rgba(44,38,37,0.06);
      box-shadow: 5px 10px 30px rgba(44,38,37,0.04);
      padding: 28px 32px;
      margin: 24px 0;
    }
    .value-box h3 {
      font-family: var(--font-header);
      font-size: 1.1rem;
      color: var(--c-charcoal);
      margin-bottom: 16px;
    }
    .value-box ul {
      list-style: none;
      padding: 0;
      margin: 0 0 16px;
    }
    .value-box li {
      font-size: 0.95rem;
      color: var(--c-charcoal);
      opacity: 0.8;
      padding: 8px 0;
      border-bottom: 1px solid rgba(44,38,37,0.05);
    }
    .value-box li:last-child { border-bottom: none; }
    .value-total {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--c-charcoal);
      margin-top: 16px;
      padding-top: 16px;
      border-top: 2px solid rgba(44,38,37,0.1);
    }

    .steps-list { list-style: none; padding: 0; }
    .steps-list li {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 12px 0;
      border-bottom: 1px solid rgba(44,38,37,0.05);
    }
    .steps-list li:last-child { border-bottom: none; }
    .step-num {
      width: 28px;
      height: 28px;
      background: var(--c-charcoal);
      color: var(--c-white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      font-weight: 700;
      flex-shrink: 0;
    }
    .step-text { font-size: 0.95rem; color: var(--c-charcoal); opacity: 0.8; line-height: 1.7; padding-top: 2px; }
    .step-text a { color: var(--c-red); text-decoration: none; font-weight: 500; }
    .step-text a:hover { text-decoration: underline; }

    footer {
      background: var(--c-white);
      border-top: 1px solid rgba(44,38,37,0.08);
      padding: 60px 60px 40px;
    }
    .footer-inner {
      display: grid;
      grid-template-columns: 1.5fr auto auto;
      gap: 80px;
      align-items: start;
      max-width: 1100px;
      margin: 0 auto 48px;
    }
    .footer-col h4 {
      font-family: var(--font-body);
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--c-green);
      margin-bottom: 20px;
      font-weight: 700;
    }
    .footer-col ul { list-style: none; padding: 0; }
    .footer-col li { margin-bottom: 12px; }
    .footer-col a {
      color: var(--c-charcoal);
      text-decoration: none;
      opacity: 0.65;
      transition: opacity 0.2s, color 0.2s;
      font-size: 0.95rem;
    }
    .footer-col a:hover { opacity: 1; color: var(--c-red); }
    .footer-brand { max-width: 340px; }
    .footer-logo {
      font-family: var(--font-header);
      font-weight: 700;
      font-size: 1.4rem;
      color: var(--c-charcoal);
      margin-bottom: 16px;
      display: block;
      text-decoration: none;
      letter-spacing: -0.02em;
    }
    .footer-desc { font-size: 0.9rem; opacity: 0.55; line-height: 1.6; color: var(--c-charcoal); }
    .footer-bottom {
      border-top: 1px solid rgba(44,38,37,0.08);
      padding-top: 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.875rem;
      opacity: 0.5;
      max-width: 1100px;
      margin: 0 auto;
    }

    @media (max-width: 768px) {
      .container { padding: 0 24px; }
      nav { padding: 20px 0; }
      .nav-links a { margin-left: 20px; }
      main { padding: 40px 24px 80px; }
      .footer-inner { grid-template-columns: 1fr; gap: 40px; }
      .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
      footer { padding: 28px 24px; }
    }
