:root {
        --bg-color: #fdfbfb;
        --bg-gradient: linear-gradient(135deg, #fdfbfb 0%, #fcedf0 100%);
        --text-main: #2c2a29;
        --text-muted: #5e5a58;
        --champagne-gold: #cba87c;
        --champagne-gold-light: rgba(203, 168, 124, 0.2);
        --card-bg: rgba(255, 255, 255, 0.88);
        --shadow-soft: 0 12px 28px rgba(222, 198, 201, 0.12);
        --shadow-gold-glow: 0 0 25px rgba(203, 168, 124, 0.35);
        --radius: 24px;
      }

      html {
        scroll-behavior: smooth;
        height: 100%;
      }

      body {
        margin: 0;
        padding: 0;
        font-family: 'Montserrat', sans-serif;
        background: var(--bg-gradient);
        color: var(--text-main);
        -webkit-font-smoothing: antialiased;
        line-height: 1.6;
        position: relative;
        overflow-x: hidden;
      }

      /* Subtle Bow Pattern Decor */
      .bow-decor {
        position: fixed;
        font-size: 1.5rem;
        color: var(--champagne-gold);
        opacity: 0.15;
        z-index: -1;
        pointer-events: none;
        user-select: none;
      }
      .bow-1 {
        top: 10%;
        left: 5%;
        transform: rotate(-15deg);
      }
      .bow-2 {
        top: 30%;
        right: 8%;
        transform: rotate(20deg);
      }
      .bow-3 {
        top: 60%;
        left: 10%;
        transform: rotate(-10deg);
      }
      .bow-4 {
        top: 80%;
        right: 12%;
        transform: rotate(15deg);
      }

      .container {
        max-width: 800px;
        margin: 0 auto;
        padding: 40px 20px 60px;
      }

      .top-actions {
        display: flex;
        justify-content: flex-start;
        margin-bottom: 28px;
      }

      .top-link-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 16px;
        border-radius: 999px;
        text-decoration: none;
        color: var(--text-main);
        font-size: 0.82rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        border: 1px solid rgba(203, 168, 124, 0.34);
        background: rgba(255, 255, 255, 0.56);
        box-shadow: 0 8px 24px rgba(222, 198, 201, 0.16);
      }

      .document-card {
        background: var(--card-bg);
        border: 1px solid rgba(203, 168, 124, 0.16);
        border-radius: var(--radius);
        padding: 50px 40px;
        box-shadow: var(--shadow-soft);
      }

      h1 {
        font-family: 'Playfair Display', serif;
        font-weight: 400;
        font-size: 2.4rem;
        margin: 0 0 16px 0;
        text-align: center;
        color: var(--text-main);
        line-height: 1.2;
      }

      .gold-divider {
        height: 1px;
        width: 80px;
        background: var(--champagne-gold);
        margin: 24px auto;
        opacity: 0.7;
      }

      .subtitle {
        text-align: center;
        font-size: 1rem;
        color: var(--text-muted);
        max-width: 600px;
        margin: 0 auto 40px auto;
        font-weight: 300;
        line-height: 1.6;
      }

      h2 {
        font-family: 'Playfair Display', serif;
        font-weight: 600;
        font-size: 1.3rem;
        margin: 32px 0 12px 0;
        color: var(--text-main);
      }

      p {
        color: var(--text-muted);
        font-size: 0.95rem;
        line-height: 1.8;
        margin: 0 0 16px 0;
        font-weight: 300;
      }

      p:last-child {
        margin-bottom: 0;
      }

      .footer-note {
        text-align: center;
        margin-top: 40px;
        font-size: 0.75rem;
        color: #9a9491;
        letter-spacing: 0.05em;
        font-weight: 400;
      }

      @media (max-width: 768px) {
        .container {
          padding: 20px 15px 40px;
        }
        .document-card {
          padding: 30px 20px;
        }
        h1 {
          font-size: 1.8rem;
        }
        .top-link-btn {
          font-size: 0.75rem;
          padding: 8px 14px;
        }
        h2 {
          font-size: 1.15rem;
        }
        p {
          font-size: 0.9rem;
        }
      }
