:root {
  --afg-green: #1f6038;
  --afg-green-dark: #10382a;
  --afg-green-deep: #0d3027;
  --afg-orange: #e65308;
  --afg-orange-hover: #c74605;
  --afg-cream: #f7f6f1;
  --afg-soft-green: #f1f7f2;
  --afg-border: #d8dfda;
  --afg-text: #172019;
  --afg-muted: #59645d;
  --afg-white: #fff;
  --afg-shadow: 0 8px 22px rgba(18, 48, 34, 0.07);
  --afg-radius: 8px;
  --afg-container: 1300px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.afg-body,
body {
  margin: 0;
  overflow-x: hidden;
  background: #fbfcf9;
  color: var(--afg-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.48;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(31, 96, 56, 0.35);
  outline-offset: 3px;
}

.afg-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.afg-container {
  width: min(var(--afg-container), calc(100% - 64px));
  margin-inline: auto;
}

.afg-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e4e8e4;
  box-shadow: 0 2px 12px rgba(15, 40, 28, 0.045);
}

.afg-header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.afg-logo,
.afg-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--afg-text);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.afg-logo-mark {
  position: relative;
  flex: 0 0 auto;
  width: 38px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px 15px 13px 13px;
  background: var(--afg-green);
}

.afg-logo-glyph {
  position: relative;
  width: 15px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 4px;
}

.afg-logo-glyph::before,
.afg-logo-glyph::after {
  content: '';
  position: absolute;
  left: 3px;
  right: 3px;
  height: 2px;
  background: #fff;
}

.afg-logo-glyph::before {
  top: 4px;
}

.afg-logo-glyph::after {
  bottom: 4px;
}

.afg-main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  font-weight: 700;
}

.afg-main-nav a {
  color: #171d19;
  text-decoration: none;
  white-space: nowrap;
}

.afg-main-nav a:hover {
  color: var(--afg-green);
}

.afg-main-nav a span {
  margin-left: 4px;
  color: #6b736e;
}

.afg-search {
  position: relative;
  width: 24px;
  height: 24px;
}

.afg-search::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  left: 3px;
  top: 3px;
  border: 2px solid #172019;
  border-radius: 50%;
}

.afg-search::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 2px;
  left: 14px;
  top: 15px;
  background: #172019;
  transform: rotate(45deg);
  transform-origin: left center;
}

.afg-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--afg-border);
  border-radius: 7px;
  background: #fff;
  cursor: pointer;
}

.afg-menu-toggle > span:not(.afg-sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--afg-green-dark);
}

.afg-hero {
  background: #fff;
  border-bottom: 1px solid #e6e9e6;
}

.afg-hero-grid {
  width: min(100%, 1600px);
  min-height: 370px;
  margin: 0 auto;
  padding-left: max(32px, calc((min(100%, 1600px) - var(--afg-container)) / 2));
  display: grid;
  grid-template-columns: minmax(500px, 46%) 1fr;
  align-items: stretch;
}

.afg-hero-copy {
  position: relative;
  z-index: 2;
  padding: 26px 38px 20px 0;
}

.afg-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 16px;
  color: #58645c;
  font-size: 12px;
}

.afg-breadcrumb a {
  color: var(--afg-green);
  text-decoration: none;
}

.afg-hero h1 {
  max-width: 640px;
  margin: 0 0 14px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 62px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
}

.afg-lede {
  max-width: 570px;
  margin: 0 0 18px;
  color: #3d4841;
  font-size: 17px;
  line-height: 1.55;
}

.afg-hero-image {
  min-width: 0;
  overflow: hidden;
  background: #ebe5dd;
}

.afg-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 370px;
  object-fit: cover;
  object-position: 51% center;
}

.afg-disclosure {
  width: min(700px, calc(100% + 80px));
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 16px;
  background: #fffaf2;
  border: 1px solid #e7c694;
  border-radius: 7px;
  box-shadow: 0 5px 14px rgba(120, 75, 25, 0.07);
}

.afg-disclosure-icon {
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 2px solid #c98736;
  border-radius: 50%;
  color: #a96115;
  font-family: Georgia, serif;
  font-weight: 700;
}

.afg-disclosure strong {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
}

.afg-disclosure p {
  margin: 0;
  color: #4d453a;
  font-size: 11.5px;
  line-height: 1.45;
}

.afg-trust-strip {
  min-height: 78px;
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--afg-border);
  border-radius: var(--afg-radius);
  box-shadow: var(--afg-shadow);
}

.afg-trust-strip div {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 20px;
  border-right: 1px solid var(--afg-border);
}

.afg-trust-strip div:last-child {
  border-right: 0;
}

.afg-trust-strip span {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 2px solid rgba(31, 96, 56, 0.75);
  border-radius: 7px;
  color: var(--afg-green);
  font-size: 15px;
  font-weight: 800;
}

.afg-trust-strip strong {
  font-size: 13px;
  line-height: 1.25;
}

.afg-quick-answer {
  min-height: 202px;
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 330px;
  overflow: hidden;
  background: var(--afg-soft-green);
  border: 1px solid var(--afg-border);
  border-radius: var(--afg-radius);
  box-shadow: var(--afg-shadow);
}

.afg-quick-copy {
  min-width: 0;
  padding: 18px 22px 16px;
}

.afg-quick-copy h2,
.afg-section-heading h2,
.afg-helpful-links h2,
.afg-faq h2,
.afg-methodology h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 1.18;
}

.afg-quick-copy h2 {
  margin-bottom: 18px;
}

.afg-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.afg-quick-grid article {
  min-width: 0;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 9px;
  align-items: start;
  padding: 0 14px;
  border-right: 1px solid rgba(31, 96, 56, 0.24);
}

.afg-quick-grid article:first-child {
  padding-left: 0;
}

.afg-quick-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.afg-line-icon,
.afg-large-icon,
.afg-link-icon {
  color: var(--afg-green);
  font-weight: 800;
}

.afg-line-icon {
  width: 34px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(31, 96, 56, 0.78);
  border-radius: 7px;
  font-size: 14px;
}

.afg-quick-grid h3,
.afg-info-grid h2 {
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 1.25;
}

.afg-quick-grid p,
.afg-info-grid p {
  margin: 0;
  color: #36423a;
  font-size: 11.5px;
  line-height: 1.48;
}

.afg-quick-image {
  min-width: 0;
}

.afg-quick-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 63% center;
}

.afg-section {
  margin-top: 20px;
}

.afg-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 10px;
}

.afg-section-heading p {
  max-width: 520px;
  margin: 0;
  color: var(--afg-muted);
  font-size: 11.5px;
  text-align: right;
}

.afg-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--afg-border);
  border-radius: 7px;
  box-shadow: var(--afg-shadow);
}

.afg-comparison-table {
  width: 100%;
  min-width: 1160px;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 11.5px;
  line-height: 1.35;
}

.afg-comparison-table th {
  padding: 9px 10px;
  background: var(--afg-green);
  color: #fff;
  font-size: 11px;
  text-align: center;
}

.afg-comparison-table th:nth-child(1) { width: 12%; }
.afg-comparison-table th:nth-child(2) { width: 18%; }
.afg-comparison-table th:nth-child(3) { width: 20%; }
.afg-comparison-table th:nth-child(4) { width: 8%; }
.afg-comparison-table th:nth-child(5) { width: 15%; }
.afg-comparison-table th:nth-child(6) { width: 17%; }
.afg-comparison-table th:nth-child(7) { width: 10%; }

.afg-comparison-table td {
  padding: 8px 10px;
  vertical-align: middle;
  border-right: 1px solid var(--afg-border);
  border-bottom: 1px solid var(--afg-border);
}

.afg-comparison-table tr:last-child td {
  border-bottom: 0;
}

.afg-comparison-table td:last-child,
.afg-comparison-table th:last-child {
  border-right: 0;
  text-align: center;
}

.afg-comparison-table ul {
  margin: 0;
  padding-left: 16px;
}

.afg-category {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.2;
}

.afg-category span {
  color: var(--afg-green);
  font-size: 18px;
}

.afg-table-product {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 8px;
  align-items: center;
}

.afg-table-product img {
  width: 58px;
  height: 58px;
  display: block;
  border-radius: 5px;
  object-fit: cover;
}

.afg-table-product strong,
.afg-table-product small {
  display: block;
}

.afg-table-product strong {
  margin-bottom: 3px;
  font-size: 11.5px;
}

.afg-table-product small {
  color: var(--afg-muted);
  font-size: 10.5px;
}

.afg-paid-button,
.afg-card-button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border-radius: 6px;
  background: var(--afg-orange);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 5px 12px rgba(230, 83, 8, 0.2);
}

.afg-paid-button:hover,
.afg-card-button:hover {
  background: var(--afg-orange-hover);
}

.afg-small-note,
.afg-visual-note {
  color: var(--afg-muted);
  font-size: 10.5px;
}

.afg-small-note {
  margin: 7px 0 0;
}

.afg-product-cards {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.afg-product-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--afg-border);
  border-radius: 7px;
  box-shadow: 0 6px 17px rgba(20, 40, 30, 0.055);
}

.afg-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  padding: 4px 7px;
  border-radius: 4px;
  background: var(--afg-green);
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
}

.afg-product-card img {
  width: 100%;
  height: 150px;
  display: block;
  margin-bottom: 9px;
  padding: 5px;
  border-radius: 5px;
  background: #f8f7f4;
  object-fit: contain;
}

.afg-product-card h3 {
  margin: 0 0 6px;
  font-size: 14.5px;
  line-height: 1.25;
}

.afg-product-card p {
  margin: 0 0 10px;
  color: #303b34;
  font-size: 11px;
  line-height: 1.45;
}

.afg-card-button {
  width: 100%;
  margin-top: auto;
}

.afg-visual-note {
  margin-top: 6px;
  margin-bottom: 0;
}

.afg-info-grid {
  margin-top: 14px;
  padding: 17px 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px 26px;
  background: #fff;
  border: 1px solid var(--afg-border);
  border-radius: var(--afg-radius);
  box-shadow: var(--afg-shadow);
}

.afg-info-grid article {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 11px;
  align-items: start;
}

.afg-large-icon {
  width: 38px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(31, 96, 56, 0.76);
  border-radius: 7px;
  font-size: 13px;
}

.afg-helpful-links {
  margin-top: 15px;
}

.afg-helpful-links h2 {
  font-size: 19px;
}

.afg-link-row {
  margin-top: 9px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.afg-link-row a {
  position: relative;
  min-width: 0;
  min-height: 72px;
  display: grid;
  grid-template-columns: 34px 1fr 18px;
  gap: 9px;
  align-items: center;
  padding: 10px 11px;
  background: #fff;
  border: 1px solid var(--afg-border);
  border-radius: 7px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(20, 40, 30, 0.045);
}

.afg-link-icon {
  font-size: 27px;
  text-align: center;
}

.afg-link-row strong,
.afg-link-row small {
  display: block;
}

.afg-link-row strong {
  margin-bottom: 3px;
  color: var(--afg-green-dark);
  font-size: 12px;
  line-height: 1.3;
}

.afg-link-row small {
  color: var(--afg-muted);
  font-size: 10.5px;
}

.afg-link-row b {
  color: var(--afg-green);
  font-size: 18px;
  text-align: right;
}

.afg-lower-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 0.98fr;
  gap: 18px;
  align-items: stretch;
}

.afg-faq h2,
.afg-methodology h2 {
  margin-bottom: 10px;
  font-size: 20px;
}

.afg-faq-button {
  width: 100%;
  min-height: 37px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 11px;
  border: 1px solid var(--afg-border);
  border-bottom: 0;
  background: #fff;
  color: var(--afg-text);
  font: inherit;
  font-size: 11.5px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.afg-faq-button:first-of-type {
  border-radius: 7px 7px 0 0;
}

.afg-faq-button:last-of-type {
  border-bottom: 1px solid var(--afg-border);
  border-radius: 0 0 7px 7px;
}

.afg-faq-button.is-open {
  border-bottom: 1px solid var(--afg-border);
}

.afg-faq-button span {
  flex: 0 0 auto;
  color: var(--afg-green);
  font-size: 18px;
}

.afg-faq-panel {
  padding: 9px 11px;
  background: var(--afg-soft-green);
  border-right: 1px solid var(--afg-border);
  border-bottom: 1px solid var(--afg-border);
  border-left: 1px solid var(--afg-border);
  color: var(--afg-muted);
  font-size: 11px;
}

.afg-faq-panel[hidden] {
  display: none;
}

.afg-faq-panel p {
  margin: 0;
}

.afg-methodology {
  position: relative;
  min-width: 0;
  padding: 16px 76px 14px 18px;
  background: #fff;
  border: 1px solid var(--afg-border);
  border-radius: 7px;
  box-shadow: var(--afg-shadow);
}

.afg-methodology-icon {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 46px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 3px solid var(--afg-green);
  border-radius: 8px;
  color: var(--afg-green);
  font-size: 23px;
  font-weight: 800;
}

.afg-methodology p {
  margin: 0 0 9px;
  color: #344038;
  font-size: 11px;
  line-height: 1.45;
}

.afg-methodology ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.afg-methodology li {
  position: relative;
  margin: 4px 0;
  padding-left: 20px;
  font-size: 11px;
  font-weight: 700;
}

.afg-methodology li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  width: 14px;
  height: 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--afg-green);
  color: #fff;
  font-size: 9px;
}

.afg-footer {
  margin-top: 24px;
  padding: 26px 0 22px;
  background: #0d3027;
  color: #f4f7f5;
}

.afg-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.65fr 0.85fr 1fr 0.9fr;
  gap: 34px;
}

.afg-footer a {
  display: block;
  margin-bottom: 6px;
  color: #f4f7f5;
  font-size: 11.5px;
  text-decoration: none;
}

.afg-footer-logo {
  display: inline-flex !important;
  margin-bottom: 9px !important;
  color: #fff !important;
  font-size: 23px !important;
}

.afg-footer .afg-logo-mark {
  width: 32px;
  height: 35px;
  background: rgba(255, 255, 255, 0.15);
}

.afg-footer .afg-logo-glyph {
  width: 13px;
  height: 17px;
}

.afg-footer p {
  max-width: 240px;
  margin: 0 0 9px;
  color: rgba(244, 247, 245, 0.8);
  font-size: 11.5px;
}

.afg-footer h3 {
  margin: 0 0 9px;
  font-size: 13px;
}

.afg-social-placeholders {
  display: flex;
  gap: 9px;
  margin: 10px 0 14px;
}

.afg-social-placeholders span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
}

.afg-footer .afg-small-note {
  color: rgba(244, 247, 245, 0.7);
  font-size: 10px;
}

.afg-generic-page {
  padding: 42px 0;
}

.afg-generic-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--afg-border);
  border-radius: var(--afg-radius);
  box-shadow: var(--afg-shadow);
}

@media (max-width: 1120px) {
  .afg-container {
    width: min(var(--afg-container), calc(100% - 40px));
  }

  .afg-main-nav {
    gap: 17px;
    font-size: 12px;
  }

  .afg-hero-grid {
    padding-left: 20px;
    grid-template-columns: minmax(460px, 50%) 1fr;
  }

  .afg-hero h1 {
    font-size: 52px;
  }

  .afg-disclosure {
    width: min(650px, calc(100% + 40px));
  }

  .afg-quick-answer {
    grid-template-columns: 1fr 270px;
  }

  .afg-quick-grid article {
    grid-template-columns: 34px 1fr;
    padding-inline: 9px;
  }

  .afg-comparison-table {
    min-width: 1100px;
  }
}

@media (max-width: 860px) {
  .afg-site-header {
    position: relative;
  }

  .afg-header-inner {
    height: 66px;
  }

  .afg-logo {
    font-size: 23px;
  }

  .afg-logo-mark {
    width: 34px;
    height: 38px;
  }

  .afg-menu-toggle {
    display: block;
  }

  .afg-main-nav {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    z-index: 60;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 12px 20px 18px;
    background: #fff;
    border-top: 1px solid var(--afg-border);
    border-bottom: 1px solid var(--afg-border);
    box-shadow: 0 12px 24px rgba(18, 48, 34, 0.12);
  }

  .afg-main-nav.is-open {
    display: grid;
  }

  .afg-main-nav a {
    padding: 11px 8px;
    border-bottom: 1px solid #edf0ed;
  }

  .afg-search {
    display: none !important;
  }

  .afg-hero-grid {
    padding-left: 0;
    grid-template-columns: 1fr;
  }

  .afg-hero-copy {
    width: min(100% - 40px, var(--afg-container));
    margin-inline: auto;
    padding: 28px 0 22px;
  }

  .afg-hero h1 {
    font-size: 50px;
  }

  .afg-disclosure {
    width: min(100%, 700px);
  }

  .afg-hero-image img {
    min-height: 300px;
    height: 300px;
  }

  .afg-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .afg-trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .afg-trust-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--afg-border);
  }

  .afg-quick-answer {
    grid-template-columns: 1fr;
  }

  .afg-quick-image img {
    height: 250px;
  }

  .afg-product-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .afg-product-card img {
    height: 210px;
  }

  .afg-info-grid,
  .afg-link-row,
  .afg-lower-grid,
  .afg-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .afg-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .afg-container {
    width: min(var(--afg-container), calc(100% - 28px));
  }

  .afg-header-inner {
    height: 62px;
  }

  .afg-main-nav {
    top: 62px;
    grid-template-columns: 1fr;
    padding-inline: 14px;
  }

  .afg-logo {
    gap: 9px;
    font-size: 21px;
  }

  .afg-logo-mark {
    width: 31px;
    height: 34px;
  }

  .afg-menu-toggle {
    width: 40px;
    height: 40px;
  }

  .afg-hero-copy {
    width: calc(100% - 28px);
    padding: 23px 0 20px;
  }

  .afg-breadcrumb {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .afg-hero h1 {
    margin-bottom: 13px;
    font-size: 40px;
    line-height: 1.04;
  }

  .afg-lede {
    font-size: 16px;
  }

  .afg-disclosure {
    padding: 12px;
  }

  .afg-hero-image img {
    min-height: 220px;
    height: 220px;
  }

  .afg-trust-strip {
    margin-top: 14px;
  }

  .afg-trust-strip div {
    min-height: 72px;
    justify-content: flex-start;
    gap: 9px;
    padding: 10px;
  }

  .afg-trust-strip span {
    width: 29px;
    height: 29px;
    font-size: 12px;
  }

  .afg-trust-strip strong {
    font-size: 11px;
  }

  .afg-quick-answer {
    margin-top: 10px;
  }

  .afg-quick-copy {
    padding: 17px 16px;
  }

  .afg-quick-copy h2 {
    margin-bottom: 15px;
    font-size: 22px;
  }

  .afg-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 0;
  }

  .afg-quick-grid article {
    padding: 0 10px;
  }

  .afg-quick-grid article:nth-child(odd) {
    padding-left: 0;
  }

  .afg-quick-grid article:nth-child(even) {
    padding-right: 0;
    border-right: 0;
  }

  .afg-quick-image img {
    height: 180px;
  }

  .afg-section {
    margin-top: 17px;
  }

  .afg-section-heading {
    display: block;
  }

  .afg-section-heading h2 {
    margin-bottom: 6px;
    font-size: 22px;
  }

  .afg-section-heading p {
    text-align: left;
  }

  .afg-comparison-table {
    min-width: 1040px;
  }

  .afg-product-cards,
  .afg-info-grid,
  .afg-link-row,
  .afg-lower-grid {
    grid-template-columns: 1fr;
  }

  .afg-product-card {
    padding: 12px;
  }

  .afg-product-card img {
    height: 230px;
  }

  .afg-info-grid {
    padding: 15px;
    gap: 18px;
  }

  .afg-link-row a {
    min-height: 68px;
  }

  .afg-methodology {
    padding: 16px 68px 15px 16px;
  }

  .afg-footer {
    margin-top: 20px;
  }

  .afg-footer-grid {
    gap: 24px 18px;
  }

  .afg-footer-brand {
    grid-column: 1 / -1;
  }

  .afg-footer-logo {
    font-size: 20px !important;
  }
}
