/* HomeSave – Mockup styles */
:root {
  --color-bg: #f5f6f8;
  --color-surface: #ffffff;
  --color-blue: #1a5f8a;
  --color-blue-dark: #0f4266;
  --color-link: #1a5f8a;
  --color-link-hover: #0f4266;
  --color-accent: #89c83e;
  --color-accent-hover: #a0d85a;
  --color-lime: #89c83e;
  --color-lime-dark: #6fa82e;
  --color-black: #0c0e12;
  --color-text: #1a1a1a;
  --color-text-muted: #5c5c5c;
  --color-border: #e2e4e8;
  --color-testimonial-bg: #152028;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 4px 12px rgba(15, 23, 42, 0.04);
  --shadow-hover: 0 8px 28px rgba(15, 23, 42, 0.1);
  --tap-min: 44px;
  --header-h: 64px;
  --section-y: clamp(2.75rem, 5vw, 4rem);
  --section-y-tight: clamp(2.25rem, 4vw, 3rem);
  --focus-ring: 0 0 0 3px rgba(26, 95, 138, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

body.menu-open {
  overflow: hidden;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

/* ----- Header ----- */
.site-header {
  background: var(--color-black);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding: 0;
  padding-left: max(20px, env(safe-area-inset-left));
  padding-right: max(20px, env(safe-area-inset-right));
}

@media (min-width: 768px) {
  .header-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* Hamburger: hidden on desktop */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: var(--tap-min);
  height: var(--tap-min);
  padding: 12px;
  margin: 0 -8px 0 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  border-radius: var(--radius);
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle:hover {
  background: rgba(255,255,255,0.1);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

@media (min-width: 901px) {
  .nav-toggle {
    display: none;
  }
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  flex-shrink: 0;
  display: block;
}

.logo-wordmark {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}

.logo-wordmark-accent {
  color: var(--color-accent);
}

@media (max-width: 380px) {
  .logo-wordmark {
    font-size: 1.05rem;
  }
  .logo-icon {
    width: 32px;
    height: 32px;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 4px 0;
}

.nav a:not(.nav-cta):hover {
  color: var(--color-accent-hover);
}

.nav-cta {
  background: var(--color-accent);
  color: var(--color-black) !important;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  min-height: var(--tap-min);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-cta:hover {
  background: var(--color-accent-hover);
  color: var(--color-black) !important;
}

/* Mobile nav: drawer */
@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-black);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 24px 20px 32px;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s ease;
  }

  .nav.nav-open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav a {
    min-height: var(--tap-min);
    display: flex;
    align-items: center;
    padding: 12px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav a:last-of-type {
    border-bottom: none;
  }

  .nav-cta {
    margin-top: 16px;
    justify-content: center;
    border-radius: var(--radius);
  }
}

/* ----- Hero ----- */
.hero {
  position: relative;
  padding: 72px 0 64px;
  background: var(--color-black);
  color: #fff;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #141820;
  background-image:
    linear-gradient(
      180deg,
      rgba(10, 10, 12, 0.88) 0%,
      rgba(10, 10, 12, 0.72) 50%,
      rgba(10, 10, 12, 0.85) 100%
    ),
    url('assets/hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(137, 200, 62, 0.18);
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-lead {
  max-width: 560px;
  margin: 0 auto 24px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

.hero-services {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.hero-services li::before {
  content: "• ";
  color: var(--color-accent);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

.btn-hero-primary {
  background: var(--color-accent);
  color: var(--color-black);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-hero-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
}

.btn-hero-secondary {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-hero-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-hover);
}

.hero-trust {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* ----- Trust bar ----- */
.trust-bar {
  background: var(--color-surface);
  padding: var(--section-y-tight) 0;
  border-bottom: 1px solid var(--color-border);
}

.trust-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-stat {
  text-align: center;
}

.trust-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 2px;
}

.trust-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ----- Buttons (shared) ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap-min);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.btn-primary {
  background: var(--color-blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-blue-dark);
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-blue);
  border: 2px solid var(--color-blue);
}

.btn-outline:hover {
  background: var(--color-blue);
  color: #fff;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-card {
  background: var(--color-accent);
  color: var(--color-black);
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-card:hover {
  background: var(--color-accent-hover);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

/* ----- Intro section ----- */
.intro-section {
  padding: var(--section-y) 0;
  text-align: center;
  background: var(--color-surface);
}

.intro-section .section-title {
  margin-bottom: 12px;
}

.intro-lead {
  max-width: 620px;
  margin: 0 auto 24px;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* ----- Section titles ----- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--color-text);
  text-align: center;
}

.section-sub {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1rem;
  line-height: 1.6;
}

/* ----- Offers ----- */
.offers {
  padding: var(--section-y) 0;
  background: var(--color-bg);
}

.offer-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.offer-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.offer-card-image {
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: var(--color-border);
}

.offer-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(26, 95, 138, 0.35);
  transform: translateY(-2px);
}

.offer-card-inner {
  padding: 28px;
}

.offer-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--color-blue);
  line-height: 1.3;
}

.offer-overview {
  margin: 0 0 16px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.offer-card ul {
  margin: 0 0 20px;
  padding-left: 20px;
  color: var(--color-text);
  font-size: 0.9rem;
  line-height: 1.6;
}

.offer-card .btn {
  margin-top: 4px;
}

.offers-cta-text {
  text-align: center;
  margin: 32px 0 16px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.offers .btn-large {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* ----- Why Us ----- */
.why-us {
  padding: var(--section-y) 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.why-us .section-title {
  margin-bottom: 36px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-bottom: 36px;
}

.why-item {
  padding: 0 8px;
}

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(137, 200, 62, 0.2);
  color: var(--color-lime-dark);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50%;
  margin-bottom: 12px;
}

.why-item h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--color-blue);
}

.why-item p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.why-us .btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* ----- How it works ----- */
.how-it-works {
  padding: var(--section-y) 0;
  background: var(--color-bg);
}

.how-it-works .section-title {
  margin-bottom: 36px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-bottom: 36px;
}

.step {
  text-align: center;
  padding: 0 16px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-blue);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
  margin-bottom: 16px;
}

.step h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--color-blue);
}

.step p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.how-it-works .btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* ----- Testimonial ----- */
.testimonial-section {
  padding: var(--section-y) 0;
  background: var(--color-testimonial-bg);
  color: #fff;
  text-align: center;
}

.testimonial {
  max-width: 640px;
  margin: 0 auto 24px;
  padding: 0;
  border: none;
}

.testimonial p {
  font-size: 1.2rem;
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 12px;
  color: rgba(255,255,255,0.95);
}

.testimonial footer {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.testimonial-section .btn-hero-primary {
  margin-top: 8px;
}

/* ----- FAQs ----- */
.faqs {
  padding: var(--section-y) 0;
  background: var(--color-surface);
}

.faqs .section-title {
  margin-bottom: 28px;
}

.faq-list {
  max-width: 680px;
  margin: 0 auto 32px;
}

.faq-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--color-blue);
}

.faq-item p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.faqs .btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* ----- SMS Opt-in ----- */
.opt-in-section {
  background: linear-gradient(180deg, #e8eef4 0%, var(--color-bg) 100%);
  padding: var(--section-y) 0 calc(var(--section-y) + 1rem);
  border-top: 1px solid var(--color-border);
}

.opt-in-section .section-title {
  margin-bottom: 12px;
}

.opt-in-intro {
  margin: 0 0 28px;
  color: var(--color-text-muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.opt-in-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--color-surface);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--color-text);
}

.label-optional {
  font-weight: 400;
  color: var(--color-text-muted);
}

.form-row input {
  width: 100%;
  min-height: var(--tap-min);
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 16px; /* prevents iOS zoom on focus */
  font-family: inherit;
}

.form-row input:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: var(--focus-ring);
}

.consent-per-offer {
  margin: 28px 0 24px;
  padding: 0;
  border: none;
}

.consent-per-offer legend {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 16px;
  padding: 0;
}

.offer-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.offer-consent input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 3px;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  accent-color: var(--color-blue);
}

@media (max-width: 900px) {
  .offer-consent {
    padding: 10px 0;
    margin-bottom: 20px;
  }
}

.offer-consent span strong {
  color: var(--color-text);
}

.offer-consent a {
  color: var(--color-link);
  text-decoration: underline;
}

.offer-consent a:hover {
  color: var(--color-link-hover);
}

.form-disclaimer {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0 0 24px;
  line-height: 1.55;
}

.form-disclaimer a {
  color: var(--color-link);
  text-decoration: underline;
}

.form-disclaimer a:hover {
  color: var(--color-link-hover);
}

.btn-submit {
  width: 100%;
  padding: 14px;
  font-size: 1.05rem;
  font-weight: 700;
  background: var(--color-accent);
  color: var(--color-black);
  border-radius: var(--radius);
}

.btn-submit:hover:not(:disabled) {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ----- Footer ----- */
.site-footer {
  background: var(--color-black);
  color: rgba(255,255,255,0.9);
  padding: 44px 0 36px;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo .logo-wordmark {
  color: #fff;
}

.footer-logo .logo-wordmark-accent {
  color: var(--color-accent);
}

.footer-address,
.site-footer p {
  margin: 0 0 6px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer a:hover {
  color: var(--color-accent-hover);
}

.footer-nav {
  margin: 20px 0 8px;
}

.footer-nav a {
  margin: 0 14px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
}

.footer-nav a:hover {
  text-decoration: underline;
  color: var(--color-accent-hover);
}

.copyright {
  margin-top: 28px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ----- Responsive & mobile-friendly ----- */
@media (max-width: 900px) {
  .hero {
    padding: 48px 0 40px;
    padding-top: max(48px, env(safe-area-inset-top));
    min-height: 380px;
  }
  .hero h1 {
    font-size: 1.85rem;
  }
  .hero-lead {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .trust-bar {
    padding: 24px 0;
  }
  .trust-stats {
    gap: 28px;
  }
  .trust-number {
    font-size: 1.5rem;
  }
  .intro-section,
  .testimonial-section {
    padding: var(--section-y-tight) 0;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .offers,
  .why-us,
  .how-it-works,
  .faqs {
    padding: var(--section-y-tight) 0;
  }
  .offer-card-inner {
    padding: 22px;
  }
  .opt-in-section {
    padding: var(--section-y-tight) 0 calc(var(--section-y-tight) + 1rem);
  }
  .opt-in-form {
    padding: 28px 20px;
  }
  .offer-consent {
    font-size: 0.82rem;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 4px;
  }
  .footer-nav a {
    margin: 0;
    padding: 8px 12px;
    min-height: var(--tap-min);
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }
  .page-content {
    padding: 1.25rem 1.15rem;
    border-radius: var(--radius);
  }
  .offer-cards {
    gap: 20px;
  }
  .offer-card-image {
    height: 160px;
  }
  .why-grid {
    gap: 24px;
  }
  .steps {
    gap: 28px;
  }
}

/* Safe area for notched devices */
@supports (padding: env(safe-area-inset-bottom)) {
  .site-footer {
    padding-bottom: max(36px, env(safe-area-inset-bottom));
  }
  .opt-in-section {
    padding-bottom: max(72px, calc(72px + env(safe-area-inset-bottom)));
  }
}

/* ----- Policy / legal pages ----- */
.page-main {
  padding: var(--section-y) 0 calc(var(--section-y) + 1rem);
  background: var(--color-bg);
}

.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2rem);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.page-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--color-text);
}

.page-updated {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 0 0 32px;
}

.policy-section {
  margin-bottom: 28px;
}

.policy-section h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--color-blue);
}

.policy-section p {
  margin: 0 0 12px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section a {
  color: var(--color-link);
  text-decoration: underline;
}

.policy-section a:hover {
  color: var(--color-link-hover);
}

.contact-address {
  margin-top: 12px;
  color: var(--color-text) !important;
  line-height: 1.6;
}
