
  :root {
    --terracotta: #C4654A;
    --terracotta-light: #D98A73;
    --cream: #FDF6EC;
    --prune: #3D2B3D;
    --charcoal: #4A3F3F;
    --lavender: #C4B1D4;
    --lavender-light: #E6DCEE;
    --white: #FFFFFF;
    --shadow: rgba(61, 43, 61, 0.1);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Nunito', 'Segoe UI', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
  }

  body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream);
  }

  .section {
    padding: 80px 0;
  }

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

  .section-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--prune);
    margin: 0 0 12px;
  }

  .section-subtitle {
    font-size: 1.05rem;
    color: var(--charcoal);
    opacity: 0.8;
    margin: 0 0 24px;
  }

  /* --- Quiz Section --- */
  .quiz-section {
    background: linear-gradient(135deg, var(--lavender-light) 0%, var(--cream) 100%);
  }

  .quiz-box {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }

  .quiz-container {
    margin-top: 32px;
  }

  .quiz-step {
    display: none;
  }

  .quiz-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .quiz-question {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--prune);
    margin-bottom: 24px;
  }

  .quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .quiz-option {
    padding: 16px 24px;
    border: 2px solid var(--lavender);
    border-radius: var(--radius);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--charcoal);
    cursor: pointer;
    transition: all var(--transition);
    text-align: left;
  }

  .quiz-option:hover {
    border-color: var(--terracotta);
    background: rgba(196, 101, 74, 0.05);
    transform: translateX(4px);
  }

  .quiz-option.selected {
    border-color: var(--terracotta);
    background: rgba(196, 101, 74, 0.1);
    font-weight: 600;
  }

  .quiz-progress {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
  }

  .quiz-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--lavender);
    transition: all var(--transition);
  }

  .quiz-dot.active {
    background: var(--terracotta);
    transform: scale(1.2);
  }

  .quiz-result {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px var(--shadow);
  }

  .quiz-result h3 {
    margin-bottom: 12px;
    color: var(--terracotta);
    font-family: var(--font-display);
  }

  .quiz-result-text {
    margin-bottom: 24px;
    line-height: 1.7;
  }

  .btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
  }

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

  .btn-primary:hover {
    background: var(--prune);
  }

