:root {
  --navy: #0d2e4f;
  --navy-soft: #12385f;
  --stone: #f7f9fb;
  --stone-deep: #e7edf2;
  --white: #ffffff;
  --ink: #1f2a37;
  --muted: #647181;
  --gold: #2f6f8f;
  --gold-soft: #dceaf1;
  --line: rgba(24, 49, 79, 0.14);
  --shadow: 0 18px 50px rgba(13, 46, 79, 0.13);
  --radius: 8px;
  --hero-image: url("https://images.unsplash.com/photo-1744731711634-0bf382a442f5?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=72&w=1800");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(13, 46, 79, 0.08);
  display: flex;
  gap: 24px;
  justify-content: flex-start;
  left: 0;
  min-height: 76px;
  padding: 14px max(20px, calc((100vw - 1120px) / 2));
  position: sticky;
  right: 0;
  top: 0;
  z-index: 50;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  border-radius: var(--radius);
  display: block;
  flex: 0 0 42px;
  height: 42px;
  object-fit: contain;
  width: 42px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 22px;
  margin-left: auto;
  order: 2;
}

.site-nav a {
  color: var(--navy);
  font-size: 0.91rem;
  font-weight: 700;
  opacity: 0.8;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold);
  opacity: 1;
}

.language-switch {
  align-items: center;
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: inline-flex;
  gap: 2px;
  order: 3;
  padding: 3px;
}

.language-switch button {
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: var(--navy);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 900;
  min-height: 32px;
  min-width: 38px;
  padding: 6px 8px;
}

.language-switch button.is-active {
  background: var(--navy);
  color: var(--gold-soft);
}

.nav-toggle {
  align-items: center;
  background: var(--navy);
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 4px;
  height: 42px;
  justify-content: center;
  order: 4;
  width: 42px;
}

.nav-toggle span:not(.sr-only) {
  background: var(--white);
  display: block;
  height: 2px;
  width: 18px;
}

.section {
  padding: 88px 0;
  scroll-margin-top: 96px;
}

.compact-section {
  padding: 64px 0;
}

.section-stone {
  background: var(--stone);
}

.section-navy,
.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-heading {
  margin-bottom: 38px;
  max-width: 760px;
}

.section-heading h2,
.two-column h2,
.calculator-grid h2,
.quote-panel h2,
.contact-grid h2,
.travel-layout h2 {
  color: inherit;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0;
  line-height: 1.06;
  margin: 0 0 16px;
}

.section-heading p,
.two-column p,
.calculator-grid p,
.quote-panel p,
.contact-grid p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

.section-navy .section-heading p,
.section-dark p,
.section-contact p,
.quote-panel p,
.calculator-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.eyebrow {
  color: var(--gold) !important;
  font-size: 0.78rem !important;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 14px !important;
  text-transform: uppercase;
}

.hero {
  background-image: linear-gradient(90deg, rgba(13, 46, 79, 0.92), rgba(13, 46, 79, 0.7), rgba(13, 46, 79, 0.28)), var(--hero-image);
  background-position: center;
  background-size: cover;
  overflow: hidden;
  padding: 64px 0 40px;
  position: relative;
}

.hero::after {
  background: linear-gradient(180deg, transparent, rgba(13, 46, 79, 0.7));
  bottom: 0;
  content: "";
  height: 28%;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.hero-grid {
  align-items: end;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1fr);
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 850px;
}

.hero h1 {
  font-size: clamp(2.55rem, 6vw, 4.9rem);
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
  max-width: 900px;
}

.hero-text {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  margin: 22px 0 0;
  max-width: 690px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--gold);
  color: var(--navy);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
}

.hero-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--navy);
  max-width: 420px;
  padding: 22px;
}

.hero-panel p {
  color: var(--muted);
  font-weight: 800;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.stat-row {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
}

.stat-row span {
  color: var(--muted);
}

.benefit-grid,
.card-grid,
.tier-grid,
.portfolio-grid,
.faq-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.benefit-grid article,
.service-card,
.pricing-card,
.tier-card,
.portfolio-card,
.faq-grid details,
.calculator-card,
.contact-form,
.expansion-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(13, 46, 79, 0.08);
}

.benefit-grid article,
.service-card,
.pricing-card,
.tier-card,
.portfolio-card,
.faq-grid details {
  padding: 24px;
}

.benefit-grid span {
  color: var(--gold);
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 18px;
}

h3 {
  color: var(--navy);
  font-size: 1.17rem;
  line-height: 1.25;
  margin: 0 0 10px;
}

.benefit-grid p,
.service-card p,
.pricing-card p,
.tier-card p,
.portfolio-card p,
.faq-grid p {
  color: var(--muted);
  margin: 0;
}

.featured-card {
  background: var(--navy);
  color: var(--white);
}

.featured-card h3,
.featured-card p {
  color: inherit;
}

.featured-card p {
  opacity: 0.78;
}

.two-column {
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.included-layout {
  display: grid;
  gap: 18px;
}

.included-list {
  background: var(--navy);
  border-radius: var(--radius);
  color: var(--white);
  display: grid;
  gap: 1px;
  overflow: hidden;
}

.included-list div {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 12px;
  min-height: 58px;
  padding: 16px 18px;
}

.included-dot {
  background: var(--gold);
  border-radius: 50%;
  flex: 0 0 8px;
  height: 8px;
  width: 8px;
}

.expansion-card {
  background: var(--stone);
  padding: 22px;
}

.tag {
  color: var(--gold) !important;
  font-size: 0.78rem !important;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 12px !important;
  text-transform: uppercase;
}

.expansion-card ul {
  color: var(--ink);
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.pricing-split {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-table-wrap {
  min-width: 0;
}

.pricing-table-wrap h3 {
  color: var(--white);
  margin-bottom: 14px;
}

.table-scroll {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow-x: auto;
}

.pricing-table {
  border-collapse: collapse;
  color: var(--white);
  min-width: 560px;
  width: 100%;
}

.pricing-table th,
.pricing-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 16px;
  text-align: left;
}

.pricing-table th {
  color: var(--gold-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.pricing-table td {
  color: rgba(255, 255, 255, 0.82);
}

.hosting-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.price-list li {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding-bottom: 10px;
}

.price-list span {
  color: var(--muted);
}

.price-list strong,
.tier-card strong {
  color: var(--navy);
}

.tier-card strong {
  display: block;
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.travel-layout {
  align-items: start;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.travel-table {
  background: var(--stone);
  border-radius: var(--radius);
  overflow: hidden;
}

.travel-table div {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 16px 18px;
}

.travel-table div:last-child {
  border-bottom: 0;
}

.calculator-grid,
.contact-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.calculator-card,
.contact-form {
  padding: 24px;
}

.form-grid,
.contact-form {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  color: inherit;
  display: grid;
  font-size: 0.88rem;
  font-weight: 800;
  gap: 7px;
}

input,
select,
textarea {
  background: var(--white);
  border: 1px solid rgba(13, 46, 79, 0.16);
  border-radius: var(--radius);
  color: var(--ink);
  min-height: 48px;
  padding: 12px 13px;
  width: 100%;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.calculator-card label,
.addons legend {
  color: var(--navy);
}

.addons {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 16px;
}

.addons legend {
  font-size: 0.88rem;
  font-weight: 900;
  padding: 0 8px;
}

.addons label {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-weight: 700;
  gap: 10px;
}

.addons input {
  accent-color: var(--gold);
  min-height: auto;
  width: auto;
}

.estimate-panel {
  background: var(--navy);
  border-radius: var(--radius);
  color: var(--white);
  display: grid;
  overflow: hidden;
}

.estimate-panel div {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 15px 16px;
}

.estimate-panel div:last-child {
  background: rgba(47, 111, 143, 0.16);
  border-bottom: 0;
}

.estimate-panel span {
  color: rgba(255, 255, 255, 0.72);
}

.estimate-panel strong {
  color: var(--gold-soft);
  font-size: 1.1rem;
}

.calculator-note {
  color: var(--muted) !important;
  font-size: 0.9rem !important;
  margin-top: 12px !important;
}

.embed-placeholder {
  align-items: center;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(13, 46, 79, 0.88), rgba(18, 56, 95, 0.8)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 36px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 36px);
  border-radius: var(--radius);
  color: var(--gold-soft);
  display: flex;
  font-weight: 900;
  justify-content: center;
  margin-bottom: 18px;
  overflow: hidden;
  padding: 20px;
  text-align: center;
}

.portfolio-showcase .section-heading {
  max-width: 860px;
}

.portfolio-featured {
  grid-column: span 2;
}

.portfolio-featured .embed-placeholder {
  aspect-ratio: 16 / 8;
}

.quote-panel {
  align-items: start;
  display: grid;
  gap: 38px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.quote-list {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  display: grid;
  gap: 0;
  overflow: hidden;
}

.quote-list div {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 4px;
  padding: 18px;
}

.quote-list span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-list strong {
  color: var(--white);
  line-height: 1.35;
}

.quote-list .button {
  border-radius: 0;
  min-height: 62px;
  width: 100%;
}

.process-list {
  counter-reset: process;
  display: grid;
  gap: 12px;
}

.process-list div {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  gap: 16px;
  padding: 16px;
}

.process-list span {
  align-items: center;
  background: var(--navy);
  border-radius: var(--radius);
  color: var(--gold-soft);
  display: inline-flex;
  flex: 0 0 42px;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.process-list p {
  font-weight: 800;
  margin: 0;
}

.faq-grid details {
  box-shadow: none;
}

.faq-grid summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
}

.faq-grid p {
  margin-top: 12px;
}

.section-contact {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--white);
}

.contact-form label {
  color: var(--navy);
}

.full-span {
  grid-column: 1 / -1;
}

.contact-note {
  border-left: 3px solid var(--gold);
  display: grid;
  gap: 4px;
  margin-top: 28px;
  padding-left: 18px;
}

.contact-note span {
  color: rgba(255, 255, 255, 0.72);
}

.form-status {
  color: var(--navy);
  font-weight: 800;
  margin: 0;
  min-height: 24px;
}

.site-footer {
  background: #081d31;
  color: rgba(255, 255, 255, 0.76);
  padding: 24px 0;
}

.footer-grid {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.footer-grid p {
  margin: 0;
}

.footer-grid a {
  color: var(--gold-soft);
  font-weight: 800;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
  }
}

@media (max-width: 920px) {
  .site-header {
    gap: 12px;
    padding-inline: 16px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    align-content: start;
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid var(--line);
    bottom: 0;
    box-shadow: var(--shadow);
    display: grid;
    gap: 0;
    padding: 88px 22px 22px;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform 220ms ease;
    width: min(360px, 86vw);
    z-index: -1;
  }

  .language-switch {
    margin-left: auto;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
  }

  .two-column,
  .pricing-split,
  .hosting-grid,
  .travel-layout,
  .calculator-grid,
  .quote-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    min-height: auto;
    padding: 78px 0 42px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-actions,
  .footer-grid {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .price-list li,
  .travel-table div,
  .estimate-panel div {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

  .portfolio-featured {
    grid-column: auto;
  }

  .portfolio-featured .embed-placeholder {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 720px) {
  .language-switch {
    gap: 1px;
    padding: 2px;
  }

  .language-switch button {
    font-size: 0.68rem;
    min-width: 31px;
    padding-inline: 5px;
  }

  .language-switch button[data-lang="sl"] {
    min-width: 38px;
  }

  .brand small {
    display: none;
  }
}

@media (max-width: 470px) {
  .brand-mark {
    height: 38px;
    width: 38px;
  }

  .brand strong {
    display: none;
  }

  .site-header {
    gap: 8px;
    padding-inline: 10px;
  }
}


.portfolio-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.portfolio-grid-home {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.portfolio-grid-page {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portfolio-media {
  margin: -24px -24px 20px;
}

.portfolio-media iframe,
.portfolio-media img,
.portfolio-media .embed-placeholder {
  border: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  height: 220px;
  width: 100%;
}

.portfolio-media img {
  object-fit: cover;
}

.portfolio-page-heading h1 {
  color: var(--navy);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1;
  margin: 0 0 18px;
}

.portfolio-pagination {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 36px;
}

.portfolio-pagination span {
  color: var(--navy);
  font-weight: 800;
}

.button-secondary-dark {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
  transform: none;
}

.portfolio-empty {
  grid-column: 1 / -1;
  text-align: center;
}

@media (max-width: 1100px) {
  .portfolio-grid-home {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .portfolio-grid-page,
  .portfolio-grid-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .portfolio-grid-page,
  .portfolio-grid-home {
    grid-template-columns: 1fr;
  }
}


/* Subtle portfolio hover feedback */
.portfolio-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.portfolio-card:hover,
.portfolio-card:focus-within {
  border-color: rgba(47, 111, 143, 0.42);
  box-shadow: 0 14px 34px rgba(13, 46, 79, 0.12);
  transform: translateY(-3px);
}

.portfolio-media iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-card {
    transition: none;
  }

  .portfolio-card:hover,
  .portfolio-card:focus-within {
    transform: none;
  }
}


/* Client-ready legal, footer and privacy elements */
[hidden] { display: none !important; }
.contact-note { display:grid; gap:4px; margin-top:24px; }
.contact-note a { color:inherit; text-decoration:underline; text-underline-offset:3px; }
.privacy-consent { display:flex; align-items:flex-start; gap:10px; font-weight:500; }
.privacy-consent input { flex:0 0 auto; min-height:auto; margin-top:5px; width:auto; }
.privacy-consent a { text-decoration:underline; text-underline-offset:3px; }
.footer-grid { align-items:flex-start; gap:20px; }
.footer-links { display:flex; flex-wrap:wrap; justify-content:flex-end; gap:12px 18px; }
.cookie-notice { position:fixed; inset:auto 16px 16px; z-index:100; }
.cookie-notice-inner { align-items:center; background:#fff; border:1px solid var(--line); border-radius:var(--radius); box-shadow:var(--shadow); display:flex; gap:18px; justify-content:space-between; margin:auto; max-width:900px; padding:16px 18px; }
.cookie-notice p { color:var(--ink); margin:0; }
.cookie-notice a { text-decoration:underline; text-underline-offset:3px; }
.cookie-notice .button { flex:0 0 auto; min-height:42px; padding:9px 16px; }
.legal-main { background:var(--stone); min-height:70vh; padding:72px 0; }
.legal-document { background:#fff; border:1px solid var(--line); border-radius:var(--radius); box-shadow:0 10px 28px rgba(7,27,45,.08); margin:auto; max-width:900px; padding:clamp(24px,5vw,56px); }
.legal-document h1 { color:var(--navy); font-size:clamp(2rem,4vw,3.4rem); line-height:1.05; margin:0 0 20px; }
.legal-document h2 { color:var(--navy); margin-top:34px; }
.legal-document p,.legal-document li { color:var(--muted); }
.legal-document a { color:var(--navy); text-decoration:underline; text-underline-offset:3px; }
.legal-meta { border-bottom:1px solid var(--line); margin-bottom:28px; padding-bottom:20px; }
@media (max-width:720px){.cookie-notice-inner{align-items:stretch;flex-direction:column}.footer-links{justify-content:flex-start}.footer-grid{display:grid}.legal-main{padding:36px 0}}


.footer-business {
  margin: 6px 0 0;
  font-size: 0.86rem;
  opacity: 0.78;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.footer-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
