 :root {
      --green-deep: #1a3a2a;
      --green-mid: #2d6a4f;
      --green-soft: #52b788;
      --green-pale: #d8f3dc;
      --cream: #faf7f0;
      --warm-white: #fff9ef;
      --amber: #e08a1e;
      --amber-light: #fce4a6;
      --text-dark: #1c2b1f;
      --text-muted: #5a7060;
      --border: #c8dfc9;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      background-color: var(--cream);
      color: var(--text-dark);
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      line-height: 1.75;
      min-height: 100vh;
    }

    /* HERO */
    .hero {
      background: var(--green-deep);
      color: var(--cream);
      padding: 80px 40px 60px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 80% 20%, rgba(82,183,136,0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 90%, rgba(224,138,30,0.12) 0%, transparent 50%);
      pointer-events: none;
    }

    .hero-inner {
      max-width: 820px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .brand-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--green-soft);
      margin-bottom: 28px;
      animation: fadeUp 0.6s ease both;
    }

    .brand-tag::before {
      content: '🌿';
      font-size: 1rem;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 5vw, 3.4rem);
      font-weight: 700;
      line-height: 1.15;
      margin-bottom: 16px;
      animation: fadeUp 0.6s 0.1s ease both;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--green-soft);
    }

    .hero-sub {
      font-size: 1rem;
      color: rgba(250,247,240,0.65);
      max-width: 480px;
      animation: fadeUp 0.6s 0.2s ease both;
    }

    .hero-meta {
      margin-top: 36px;
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      animation: fadeUp 0.6s 0.3s ease both;
    }

    .meta-pill {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px;
      padding: 10px 18px;
      font-size: 0.82rem;
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(250,247,240,0.8);
    }

    .meta-pill span { color: var(--amber); font-size: 1rem; }

    /* CONTENT */
    .content {
      max-width: 820px;
      margin: 0 auto;
      padding: 60px 40px 100px;
    }

    .intro-box {
      background: var(--warm-white);
      border-left: 3px solid var(--green-soft);
      border-radius: 12px;
      padding: 28px 32px;
      margin-bottom: 56px;
      font-size: 0.97rem;
      color: var(--text-muted);
      animation: fadeUp 0.6s 0.35s ease both;
    }

    /* SECTIONS */
    .section {
      margin-bottom: 56px;
      animation: fadeUp 0.6s ease both;
    }

    .section-header {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      margin-bottom: 24px;
    }

    .section-num {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      background: var(--green-pale);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--green-mid);
      margin-top: 2px;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.45rem;
      font-weight: 700;
      color: var(--green-deep);
      line-height: 1.2;
    }

    .section-body {
      padding-left: 62px;
    }

    .section-body p {
      font-size: 0.97rem;
      color: var(--text-muted);
      margin-bottom: 14px;
    }

    .section-body strong {
      color: var(--text-dark);
      font-weight: 500;
    }

    /* SUB-SECTIONS */
    .sub-section {
      margin-top: 22px;
      margin-bottom: 22px;
    }

    .sub-title {
      font-size: 0.88rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--green-mid);
      margin-bottom: 12px;
    }

    /* CARDS */
    .card-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: 14px;
    }

    @media (max-width: 560px) { .card-grid { grid-template-columns: 1fr; } }

    .card {
      background: var(--warm-white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 20px 22px;
    }

    .card-icon { font-size: 1.4rem; margin-bottom: 10px; }
    .card h4 { font-size: 0.92rem; font-weight: 500; color: var(--text-dark); margin-bottom: 8px; }
    .card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.55; }

    /* LIST */
    .styled-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .styled-list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      font-size: 0.95rem;
      color: var(--text-muted);
    }

    .styled-list li::before {
      content: '';
      flex-shrink: 0;
      width: 7px;
      height: 7px;
      background: var(--green-soft);
      border-radius: 50%;
      margin-top: 8px;
    }

    /* STEPS */
    .steps {
      display: flex;
      flex-direction: column;
      gap: 0;
      position: relative;
    }

    .steps::before {
      content: '';
      position: absolute;
      left: 18px;
      top: 22px;
      bottom: 22px;
      width: 2px;
      background: var(--border);
    }

    .step {
      display: flex;
      gap: 18px;
      align-items: flex-start;
      padding: 14px 0;
      position: relative;
      z-index: 1;
    }

    .step-dot {
      flex-shrink: 0;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--green-deep);
      color: var(--cream);
      font-size: 0.85rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .step-content { padding-top: 8px; }
    .step-content h4 { font-size: 0.93rem; font-weight: 500; color: var(--text-dark); margin-bottom: 4px; }
    .step-content p { font-size: 0.88rem; color: var(--text-muted); }

    /* HIGHLIGHT BOX */
    .highlight {
      background: linear-gradient(135deg, var(--amber-light), #fff3cc);
      border: 1px solid #e8c96a;
      border-radius: 14px;
      padding: 24px 28px;
      margin-top: 10px;
    }

    .highlight-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.78rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--amber);
      margin-bottom: 10px;
    }

    .highlight p {
      font-size: 0.95rem;
      color: #5a4a1e;
      margin: 0;
    }

    /* REFUND METHODS */
    .refund-methods {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: 14px;
    }

    @media (max-width: 560px) { .refund-methods { grid-template-columns: 1fr; } }

    .method-card {
      background: var(--warm-white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 22px;
    }

    .method-badge {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: var(--green-pale);
      color: var(--green-mid);
      border-radius: 4px;
      padding: 3px 8px;
      margin-bottom: 10px;
    }

    .method-card h4 { font-size: 0.93rem; font-weight: 500; color: var(--text-dark); margin-bottom: 6px; }
    .method-card p { font-size: 0.87rem; color: var(--text-muted); }

    /* DIVIDER */
    .divider {
      border: none;
      border-top: 1px solid var(--border);
      margin: 0 0 56px;
    }

    /* CONTACT FOOTER */
    .contact-box {
      background: var(--green-deep);
      color: var(--cream);
      border-radius: 20px;
      padding: 48px 40px;
      text-align: center;
    }

    .contact-box h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      margin-bottom: 10px;
    }

    .contact-box p {
      color: rgba(250,247,240,0.6);
      font-size: 0.95rem;
      margin-bottom: 32px;
    }

    .contact-links {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .contact-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      color: var(--cream);
      text-decoration: none;
      border-radius: 10px;
      padding: 12px 22px;
      font-size: 0.9rem;
      transition: background 0.2s, border-color 0.2s;
    }

    .contact-link:hover {
      background: rgba(255,255,255,0.14);
      border-color: rgba(255,255,255,0.3);
    }

    .contact-link .icon { font-size: 1.1rem; }

    /* ANIMATIONS */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .section:nth-child(1) { animation-delay: 0.1s; }
    .section:nth-child(2) { animation-delay: 0.15s; }
    .section:nth-child(3) { animation-delay: 0.2s; }
    .section:nth-child(4) { animation-delay: 0.25s; }
    .section:nth-child(5) { animation-delay: 0.3s; }
    .section:nth-child(6) { animation-delay: 0.35s; }
    .section:nth-child(7) { animation-delay: 0.4s; }

    @media (max-width: 600px) {
      .hero { padding: 60px 24px 44px; }
      .content { padding: 40px 24px 70px; }
      .hero-meta { gap: 12px; }
      .section-body { padding-left: 0; }
      .section-header { flex-direction: column; gap: 10px; }
      .contact-box { padding: 36px 24px; }
    }