    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
    :root {
      --black:      #1a1a1a;
      --charcoal:   #2c2c2c;
      --dark-gray:  #444444;
      --mid-gray:   #666666;
      --light-gray: #888888;
      --rule-gray:  #cccccc;
      --bg:         #ffffff;
      --bg-light:   #f8f8f8;
      --border:     #e0e0e0;
      --accent:     #1e4664;   /* deep burgundy — funeral/Carriage palette */
      --accent-hover: #5e1522;
      --serif: 'Merriweather', Georgia, serif;
      --sans:  'Lato', Arial, sans-serif;
    }
 
    body {
      
      background: var(--bg);
      color: var(--charcoal);
      font-size: 15px;
      line-height: 1.75;
      font-weight: 400;
    }
 
    /* ── PAGE WRAPPER ── */
    .page-content {
      max-width: 860px;
      margin: 0 auto;
      padding: 3rem 2rem 5rem;
    }
 
    /* ── PAGE TITLE ── */
    .page-title {
   
      font-size: 2rem;
      font-weight: 700;
      color: var(--black);
      margin-bottom: 0.25rem;
      line-height: 1.2;
    }
 
    .page-revised {
    
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--light-gray);
      margin-bottom: 1.75rem;
    }
 
    .intro-text {
      font-size: 15px;
      color: var(--dark-gray);
      line-height: 1.8;
      margin-bottom: 2rem;
    }
 
    /* ── HORIZONTAL RULE ── */
    .section-rule {
      border: none;
      border-top: 1px solid var(--rule-gray);
      margin: 2.25rem 0;
    }
 
    /* ── SECTION HEADINGS ── */
    h2 {
    
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--black);
      margin-bottom: 0.75rem;
      line-height: 1.3;
    }
 
    h3 {
    
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.6rem;
    }
 
    p {
      color: var(--dark-gray);
      font-size: 15px;
      margin-bottom: 0.85rem;
      line-height: 1.8;
    }
 
    p:last-child { margin-bottom: 0; }
 
    a { color: var(--accent); text-decoration: none; }
    a:hover { text-decoration: underline; }
 
    /* ── DATA TYPE LIST ── */
    .data-list {
      list-style: none;
      padding: 0;
      margin: 0.75rem 0 0;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
 
    .data-list li {
      font-size: 14px;
      color: var(--dark-gray);
      padding-left: 1.1rem;
      position: relative;
      line-height: 1.6;
    }
 
    .data-list li::before {
      content: '—';
      position: absolute;
      left: 0;
      color: var(--accent);
      font-weight: 700;
    }
 
    /* ── FORM CARD ── */
    .form-card {
      border: 1px solid var(--border);
      margin-top: 1.5rem;
    }
 
    .form-card-header {
      background: var(--accent);
      padding: 1rem 1.5rem;
    }
 
    .form-card-header h3 {
    
      font-size: 1.05rem;
      font-weight: 700;
      color: #ffffff;
      letter-spacing: 0;
      text-transform: none;
      margin: 0 0 2px;
    }
 
    .form-card-header p {
      font-size: 12px;
      color: rgba(255,255,255,0.65);
      margin: 0;
    }
 
    .form-body { padding: 1.5rem; }
 
    /* ── ALERTS ── */
    .alert {
      padding: 0.9rem 1.1rem;
      font-size: 14px;
      line-height: 1.65;
      margin-bottom: 1.25rem;
      border-left: 4px solid;
    }
 
    .alert strong { display: block; font-size: 14.5px; margin-bottom: 3px; }
 
    .alert-error {
      background: #fdf2f2;
      border-color: var(--accent);
      color: #5a1020;
    }
 
    .alert-success {
      background: #f4faf0;
      border-color: #4a8c28;
      color: #1f4a0a;
    }
 
    /* ── FORM LAYOUT ── */
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 14px;
    }
 
    @media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
 
    .form-group { display: flex; flex-direction: column; gap: 5px; }
    .form-group.full { grid-column: 1 / -1; }
 
    label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--mid-gray);
    }
 
    input[type="text"],
    input[type="email"],
    select {
      font-family: var(--sans);
      font-size: 14px;
      color: var(--charcoal);
      background: var(--bg);
      border: 1px solid #c8c8c8;
      padding: 0.6rem 0.75rem;
      width: 100%;
      border-radius: 0;
      -webkit-appearance: none;
      appearance: none;
      transition: border-color 0.15s;
    }
 
    input[type="text"]:focus,
    input[type="email"]:focus,
    select:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(122,28,46,0.1);
    }
 
    select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 10px center;
      padding-right: 2rem;
    }
 
    /* ── CHECKBOXES ── */
    .check-label-group {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--mid-gray);
      display: block;
      margin-bottom: 0.75rem;
    }
 
    .checkbox-list { display: flex; flex-direction: column; gap: 14px; }
 
    .checkbox-item {
      display: flex;
      align-items: flex-start;
      gap: 11px;
      cursor: pointer;
    }
 
    .checkbox-item input[type="checkbox"] {
      width: 16px;
      height: 16px;
      margin-top: 3px;
      flex-shrink: 0;
      accent-color: var(--accent);
      cursor: pointer;
    }
 
    .checkbox-item .check-text {
      font-size: 14px;
      color: var(--dark-gray);
      line-height: 1.55;
    }
 
    .checkbox-item .check-text strong {
      display: block;
      font-size: 13.5px;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 2px;
    }
 
    /* ── DIVIDER ── */
    .form-rule {
      height: 1px;
      background: var(--border);
      margin: 1.25rem 0;
    }
 
    /* ── SUBMIT ROW ── */
    .submit-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }
 
    .required-note {
      font-size: 12px;
      color: var(--light-gray);
    }
 
    .btn-submit {
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #ffffff;
      background: var(--accent);
      border: 2px solid var(--accent);
      padding: 0.7rem 1.75rem;
      cursor: pointer;
      border-radius: 0;
      transition: background 0.2s, border-color 0.2s;
    }
 
    .btn-submit:hover {
      background: var(--accent-hover);
      border-color: var(--accent-hover);
    }
 
    /* ── RIGHTS GRID ── */
    .rights-list {
      counter-reset: rights;
      list-style: none;
      padding: 0;
      margin: 0.75rem 0 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
 
    .rights-list li {
      display: flex;
      gap: 12px;
      font-size: 14.5px;
      color: var(--dark-gray);
      line-height: 1.7;
      counter-increment: rights;
    }
 
    .rights-list li::before {
      content: counter(rights) ".";
      font-weight: 700;
      color: var(--accent);
      flex-shrink: 0;
      min-width: 18px;
    }
 
    /* ── CONTACT BLOCK ── */
    .contact-table {
      margin-top: 1rem;
      border: 1px solid var(--border);
      width: 100%;
    }
 
    .contact-row {
      display: flex;
      border-bottom: 1px solid var(--border);
    }
 
    .contact-row:last-child { border-bottom: none; }
 
    .contact-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      min-width: 90px;
      padding: 0.75rem 1rem;
      background: var(--bg-light);
      border-right: 1px solid var(--border);
      display: flex;
      align-items: center;
    }
 
    .contact-value {
      padding: 0.75rem 1rem;
      font-size: 14.5px;
      color: var(--dark-gray);
      line-height: 1.55;
    }
 
    .contact-value a { color: var(--accent); font-weight: 700; }
 
    .contact-note {
      font-size: 13px;
      color: var(--light-gray);
      font-style: italic;
      margin-top: 0.75rem;
      line-height: 1.6;
    }

