body.tcpa-claim-review-page #content.tcpa-claim-review-wrap,
body.tcpa-claim-review-page .tcpa-claim-review-wrap {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.tcpa-claim-review-page {
    background: #fff;
    color: #1a1a1a;
  }
  
  .tcpa-container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
  }
  
  .tcpa-section {
    padding: 64px 0;
  }
  
  .tcpa-section--alt {
    background: #f6f8fb;
  }
  
  .tcpa-hero {
    padding: 72px 0 48px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  }
  
  .tcpa-hero__grid {
    display: grid;
    grid-template-columns: 1.2fr .9fr;
    gap: 32px;
    align-items: center;
  }
  
  .tcpa-eyebrow {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #0f172a;
  }
  
  .tcpa-hero h1,
  .tcpa-section h2,
  .tcpa-card h3 {
    line-height: 1.15;
  }
  
  .tcpa-subheadline,
  .tcpa-trust-line {
    font-size: 18px;
  }
  
  .tcpa-bullets,
  .tcpa-checklist {
    padding-left: 20px;
  }
  
  .tcpa-card,
  .tcpa-faq details {
    background: #fff;
    border: 1px solid #e4e9f0;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  }
  
  .tcpa-card-grid {
    display: grid;
    gap: 20px;
    margin-top: 24px;
  }
  
  .tcpa-card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .tcpa-card-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .tcpa-answer-list {
    display: grid;
    gap: 12px;
    margin-top: 16px;
  }
  
  .tcpa-answer-btn,
  .tcpa-btn,
  .tcpa-checkbox-list label,
  .tcpa-form-grid input {
    border-radius: 12px;
  }
  
  .tcpa-answer-btn {
    width: 100%;
    min-height: 56px;
    padding: 14px 16px;
    border: 1px solid #cfd8e3;
    background: #fff;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
  }
  
  .tcpa-answer-btn:hover,
  .tcpa-answer-btn:focus {
    border-color: #1d4ed8;
    outline: none;
  }
  
  .tcpa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 20px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
  }
  
  .tcpa-btn--primary {
    background: #1d4ed8;
    color: #fff;
  }
  
  .tcpa-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0;
  }
  
  .tcpa-form-grid input {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px solid #cfd8e3;
  }
  
  .tcpa-checkbox-list {
    display: grid;
    gap: 10px;
    margin: 16px 0;
  }

  .tcpa-checkbox-list label {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 10px 14px;
    border: 1px solid #cfd8e3;
    background: #fff;
    cursor: pointer;
    gap: 12px;
  }

  .tcpa-checkbox-list input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    accent-color: #15803d;
  }

  .tcpa-form-error {
    color: #b91c1c;
    font-size: 15px;
    margin: 0 0 16px;
    padding: 12px 14px;
    background: #fef2f2;
    border-radius: 12px;
    border: 1px solid #fecaca;
  }
  
  .tcpa-consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 16px;
  }
  
  .tcpa-quiz-step {
    display: none;
  }
  
  .tcpa-quiz-step.is-active {
    display: block;
  }
  
  .tcpa-faq {
    display: grid;
    gap: 12px;
  }
  
  .tcpa-faq summary {
    cursor: pointer;
    font-weight: 700;
  }
  
  .tcpa-footer-cta {
    padding: 56px 0;
    background: #0f172a;
    color: #fff;
  }
  
  .tcpa-footer-cta h2 {
    color: #fff;
  }

  .tcpa-footer-cta__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  
  .tcpa-mobile-sticky-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    min-height: 56px;
    border: none;
    border-radius: 14px;
    background: #1d4ed8;
    color: #fff;
    font-weight: 700;
    z-index: 999;
    display: none;
  }
  
  a.tcpa-btn.tcpa-btn--primary.js-tcpa-jump-quiz:hover {
    color: #fff;
    opacity: 0.8;
  }

  .tcpa-footer-cta a.tcpa-btn.tcpa-btn--primary {
    min-width: 240px;
  }
  
  @media (max-width: 991px) {
    .tcpa-hero__grid,
    .tcpa-card-grid--3,
    .tcpa-card-grid--4,
    .tcpa-form-grid,
    .tcpa-footer-cta__inner {
      grid-template-columns: 1fr;
      display: grid;
    }
  }
  
  @media (max-width: 767px) {
    .tcpa-section,
    .tcpa-hero {
      padding: 48px 0;
    }
  
    .tcpa-mobile-sticky-cta {
      display: block;
    }
  
    .tcpa-footer-cta {
      padding-bottom: 96px;
    }
  }