/* Farmacia Botta - style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  --green-dark: #1a5632;
  --green-main: #2a7a4b;
  --green-light: #3d9e66;
  --green-pale: #e8f5ed;
  --green-accent: #45b36b;
  --white: #ffffff;
  --offwhite: #f7f9f8;
  --gray-light: #eef1f0;
  --gray-mid: #9ba8a0;
  --gray-text: #4a5a50;
  --text-dark: #1e2d24;
  --shadow-sm: 0 2px 8px rgba(26,86,50,0.08);
  --shadow-md: 0 4px 20px rgba(26,86,50,0.12);
  --shadow-lg: 0 8px 40px rgba(26,86,50,0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--offwhite);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
}

a {
  color: var(--green-main);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--green-light);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.82rem;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a {
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}

.top-bar a:hover {
  color: var(--white);
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-right {
  font-size: 0.8rem;
  opacity: 0.85;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--green-dark);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--green-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-icon::after {
  content: "+";
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gray-mid);
  display: block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: -2px;
}

/* Main nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--green-main);
  background: var(--green-pale);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,86,50,0.92) 0%, rgba(42,122,75,0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
  padding: 80px 0;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

/* ===== PAGE HERO (smaller) ===== */
.page-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-dark);
}

.page-hero .hero-content {
  padding: 60px 0;
}

.page-hero .hero-content h1 {
  font-size: 2.4rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--white);
  color: var(--green-dark);
}

.btn-primary:hover {
  background: var(--green-pale);
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--green-main);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--green-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 2.2rem;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--gray-text);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-header .divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-main), var(--green-light));
  border-radius: 3px;
  margin: 16px auto 0;
}

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-img {
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.card-body {
  padding: 28px;
}

.card-body h3 {
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.card-body p {
  color: var(--gray-text);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.card-link {
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card-link::after {
  content: "\2192";
  transition: transform var(--transition);
}

.card-link:hover::after {
  transform: translateX(4px);
}

/* ===== INFO BOXES ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.info-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--green-main);
}

.info-box h3 {
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.info-box p, .info-box li {
  color: var(--gray-text);
  font-size: 0.92rem;
}

/* ===== SERVICE LIST ===== */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.service-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--green-main);
}

.service-item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.service-item p {
  font-size: 0.85rem;
  color: var(--gray-text);
}

/* ===== HOURS & CONTACT ===== */
.hours-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--gray-light);
}

.hours-table td {
  padding: 14px 0;
  font-size: 0.95rem;
}

.hours-table td:first-child {
  font-weight: 500;
  color: var(--green-dark);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--gray-text);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-light);
}

.contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-main);
  font-weight: 700;
  font-size: 0.85rem;
}

.contact-item span {
  font-size: 0.92rem;
  color: var(--gray-text);
}

.contact-item strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.88rem;
  margin-bottom: 2px;
}

/* ===== MAP ===== */
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== ABOUT LAYOUT ===== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-layout.reverse {
  direction: rtl;
}

.about-layout.reverse > * {
  direction: ltr;
}

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.about-text h2 {
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.about-text p {
  color: var(--gray-text);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

/* ===== PRODUCT CARDS ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-light);
}

.product-card:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.product-icon {
  width: 64px;
  height: 64px;
  background: var(--green-pale);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}

.product-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.product-card p {
  font-size: 0.88rem;
  color: var(--gray-text);
}

/* ===== PROMO CARDS ===== */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.promo-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.promo-card:hover {
  box-shadow: var(--shadow-md);
}

.promo-badge {
  display: inline-block;
  background: var(--green-main);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.promo-card .card-body {
  padding: 28px;
}

.promo-card h3 {
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.promo-card p {
  font-size: 0.9rem;
  color: var(--gray-text);
  margin-bottom: 12px;
}

.promo-period {
  font-size: 0.8rem;
  color: var(--gray-mid);
  font-style: italic;
}

/* ===== STATS ===== */
.stats-bar {
  background: var(--green-dark);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  color: var(--white);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.75;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--green-main) 0%, var(--green-dark) 100%);
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--white);
  margin: 40px 0;
}

.cta-banner h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.cta-banner p {
  opacity: 0.85;
  font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.footer-brand .logo-text {
  color: var(--white);
  font-size: 1.3rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 12px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}

.footer-contact-item strong {
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 16px 0;
  font-size: 0.82rem;
}

.breadcrumb a {
  color: var(--gray-mid);
}

.breadcrumb span {
  color: var(--gray-mid);
  margin: 0 8px;
}

.breadcrumb strong {
  color: var(--text-dark);
  font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 992px) {
  .cards-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-layout.reverse {
    direction: ltr;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .hours-contact {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
  }
}

/* Бургер-меню для планшетов и мобильных (ноут от 1025px — десктопная навигация) */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gray-light);
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    padding: 12px 16px;
    width: 100%;
  }

  .burger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .hero {
    min-height: 400px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content {
    padding: 48px 0;
  }

  .page-hero {
    min-height: 220px;
  }

  .page-hero .hero-content h1 {
    font-size: 1.8rem;
  }

  .section {
    padding: 48px 0;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .cards-grid,
  .product-grid,
  .services-list,
  .promo-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Mobile CTA (hidden by default, shown by product.css/JS) */
.mobile-cta{display:none;position:fixed;bottom:0;left:0;right:0;z-index:99;background:#fff;padding:10px 16px;box-shadow:0 -4px 20px rgba(0,0,0,0.15);border-top:1px solid #eef1f0}
.mobile-cta a{display:flex;align-items:center;justify-content:center;gap:8px;width:100%;padding:14px;background:#2a7a4b;color:#fff;border-radius:50px;font-family:'Poppins',sans-serif;font-size:1rem;font-weight:600;text-decoration:none}
.mobile-cta a svg{width:18px;height:18px}
@media(max-width:768px){body:has(#ordina){padding-bottom:80px}}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 60px 0 80px;
  background: #fafbfa;
}
.legal-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 56px 60px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--green-main);
}
.legal-wrap h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.1rem;
  color: var(--green-dark);
  margin-bottom: 8px;
  line-height: 1.2;
}
.legal-meta {
  color: var(--gray-text);
  font-size: 0.85rem;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eef1f0;
}
.legal-wrap h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  color: var(--green-dark);
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6ebe8;
}
.legal-wrap h3 {
  font-size: 1.05rem;
  color: var(--green-dark);
  margin: 22px 0 10px;
}
.legal-wrap p, .legal-wrap li {
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.legal-wrap ul, .legal-wrap ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.legal-wrap li { margin-bottom: 6px; }
.legal-wrap strong { color: var(--green-dark); }
.legal-wrap a { color: var(--green-main); text-decoration: underline; word-break: break-word; }
.legal-data {
  background: #f5f8f6;
  border-left: 3px solid var(--green-main);
  border-radius: 6px;
  padding: 18px 22px;
  margin: 18px 0;
  font-size: 0.9rem;
}
.legal-data div { margin-bottom: 6px; }
.legal-data strong { display: inline-block; min-width: 180px; }
.legal-form {
  background: #f5f8f6;
  border: 1px solid #e0e7e2;
  border-radius: 8px;
  padding: 22px 26px;
  margin: 18px 0;
  font-size: 0.9rem;
}
.legal-form p { margin-bottom: 10px; }
.field-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 10px 0;
  color: var(--gray-text);
}
.field-blank {
  flex: 1 1 160px;
  min-width: 80px;
  height: 1px;
  background: repeating-linear-gradient(to right, #7a8079 0 4px, transparent 4px 8px);
  align-self: flex-end;
  margin-bottom: 4px;
}
.field-blank.short { flex: 0 1 120px; min-width: 60px; }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 22px;
  font-size: 0.88rem;
}
.legal-table th, .legal-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid #e8eceb;
}
.legal-table th {
  background: #f0f4f2;
  color: var(--green-dark);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
@media (max-width: 900px) {
  .legal-wrap { padding: 40px 32px; }
}
@media (max-width: 720px) {
  .legal-page { padding: 28px 0 48px; }
  .legal-wrap { padding: 28px 20px; border-radius: 10px; }
  .legal-wrap h1 { font-size: 1.45rem; }
  .legal-wrap h2 { font-size: 1.08rem; margin: 28px 0 10px; }
  .legal-wrap h3 { font-size: 0.98rem; }
  .legal-wrap p, .legal-wrap li { font-size: 0.9rem; }
  .legal-meta { font-size: 0.78rem; margin-bottom: 22px; }
  .legal-data { padding: 14px 16px; font-size: 0.85rem; }
  .legal-data strong { min-width: 100%; display: block; margin-bottom: 2px; }

  /* stackable table */
  .legal-table, .legal-table thead, .legal-table tbody, .legal-table tr, .legal-table th, .legal-table td { display: block; width: 100%; }
  .legal-table thead { display: none; }
  .legal-table tr {
    background: #fff;
    border: 1px solid #e6ebe8;
    border-radius: 8px;
    margin-bottom: 12px;
    padding: 10px 14px;
  }
  .legal-table td {
    padding: 6px 0;
    border: 0;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .legal-table td::before {
    content: attr(data-label);
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    color: var(--green-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }
}
@media (max-width: 480px) {
  .legal-wrap { padding: 22px 16px; }
  .legal-wrap h1 { font-size: 1.3rem; }
}


