/* Base styles - generally fine with 0 or standard properties */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%; /* Use 100% for full viewport height */
  max-width: 100%; /* Ensures no horizontal overflow unless intended */
  overflow-x: hidden; /* Prevent horizontal scroll from accidental overflow */
  font-family: sans-serif;
  font-size: 16px; /* Base font size for rem calculations. Can be adjusted for scaling. */
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%; /* Ensures images scale down within their containers */
  height: auto; /* Maintain aspect ratio */
}

input,
button,
textarea,
select {
  font: inherit; /* Inherits font from parent for consistency */
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/* Navbar */
.navbar {
  height: 10vh; /* Responsive height based on viewport height */
  width: 100%;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem; /* 40px / 16px = 2.5rem */
}

.logo {
  height: 180%; /* Relative to parent's line-height or font-size if not image */
  /* If this is an image, better to control via max-width/width/height on the img tag itself in HTML or explicitly in CSS as vw */
  /* e.g., max-height: 8vh; width: auto; */
  /* For an image, 'height: 180%;' might cause overflow. Consider: */
  max-height: 80%; /* Or a specific vh unit like 8vh for 8% of viewport height */
  width: auto; /* Maintain aspect ratio */
}

.nav-links {
  display: flex;
  gap: 3rem; /* Remains 3rem, as it's already a responsive unit */
}

.nav-links a {
  color: #ffffff;
  font-size: 1.2rem; /* Already rem */
  font-weight: 1000;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #dd4e69;
}

.cta-btn {
  background-color: #dd4e69;
  color: #ffffff;
  padding: 0.625rem 1.5625rem; /* 10px/16 = 0.625rem, 25px/16 = 1.5625rem */
  font-size: 1rem; /* 16px/16 = 1rem */
  border: none;
  border-radius: 1.875rem; /* 30px/16 = 1.875rem */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #c1405a;
}

/* Pushable Button (This is more complex due to position and blur values) */
.pushable {
  position: relative;
  background: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
  outline-offset: 0.25rem; /* 4px/16 = 0.25rem */
  outline-color: #dd4e69;
  transition: filter 250ms;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  width: fit-content;
}

.shadow {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #a23a4f;
  border-radius: 0.5rem; /* 8px/16 = 0.5rem */
  filter: blur(0.125rem); /* 2px/16 = 0.125rem */
  will-change: transform;
  transform: translateY(0.125rem); /* 2px/16 = 0.125rem */
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.edge {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 0.5rem; /* 8px/16 = 0.5rem */
  background: linear-gradient(
    to right,
    #b84057 0%,
    #dd4e69 8%,
    #b84057 92%,
    #9c3044 100%
  );
}

.front {
  display: block;
  position: relative;
  border-radius: 0.5rem; /* 8px/16 = 0.5rem */
  background: #dd4e69;
  padding: 0.875rem 1.5rem; /* 14px/16 = 0.875rem, 24px/16 = 1.5rem */
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09375rem; /* 1.5px/16 = 0.09375rem (or use em/ch for letter-spacing) */
  font-size: 1rem; /* Already rem */
  transform: translateY(-0.25rem); /* 4px/16 = 0.25rem */
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.pushable:hover {
  filter: brightness(110%);
}

.pushable:hover .front {
  transform: translateY(-0.375rem); /* 6px/16 = 0.375rem */
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.pushable:active .front {
  transform: translateY(-0.125rem); /* 2px/16 = 0.125rem */
  transition: transform 34ms;
}

.pushable:hover .shadow {
  transform: translateY(0.25rem); /* 4px/16 = 0.25rem */
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.pushable:active .shadow {
  transform: translateY(0.0625rem); /* 1px/16 = 0.0625rem */
  transition: transform 34ms;
}

.pushable:focus:not(:focus-visible) {
  outline: none;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh; /* Responsive height */
  width: 100%;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 8vw; /* Responsive padding based on viewport width */
}

.hero-overlay h1 {
  font-size: clamp(3rem, 7vw, 5.5rem); /* Adaptive font size: min 3rem, max 5.5rem, scales with 7vw */
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.line1,
.line3 {
  display: block;
  color: #ffffff;
}

.line2 {
  display: flex;
  align-items: center;
  gap: 1.25rem; /* 20px/16 = 1.25rem */
}

.arrow-icon {
  width: clamp(3rem, 6vw, 5rem); /* Responsive width */
  height: auto; /* Maintain aspect ratio */
}

.creative-outline {
  font-weight: 1000;
  font-size: clamp(3rem, 7vw, 5.5rem); /* Adaptive font size */
  color: transparent;
  -webkit-text-stroke: 0.125rem #ffffff; /* 2px/16 = 0.125rem */
  text-stroke: 0.125rem #ffffff; /* 2px/16 = 0.125rem */
}

.subtext {
  margin-top: 1.5625rem; /* 25px/16 = 1.5625rem */
  font-size: 1.3rem; /* Already rem */
  max-width: 37.5rem; /* 600px/16 = 37.5rem */
  opacity: 0.85;
}

.hero-overlay .pushable {
  margin-top: 1.875rem; /* 30px/16 = 1.875rem */
}

/* Scrolling Bar */
.scrolling-bar {
  height: 15vh; /* Responsive height */
  width: 100%;
  overflow: hidden;
  background-color: #000000;
  display: flex;
  align-items: center;
}

.scrolling-content {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: scroll-left 20s linear infinite;
  gap: 3rem; /* Already rem */
}

/* Keyframes remain as is, transform values are unitless or percentages */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.filled {
  font-size: clamp(2rem, 5vw, 3.5rem); /* Adaptive font size */
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff; /* Moved from .testimonial.filled for consistency */
}

.outlined {
  font-size: clamp(2rem, 5vw, 3.5rem); /* Adaptive font size */
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 0.09375rem #ffffff; /* 1.5px/16 = 0.09375rem */
  text-stroke: 0.09375rem #ffffff; /* 1.5px/16 = 0.09375rem */
  text-transform: uppercase;
}

.bar-arrow {
  height: 2.5rem; /* 40px/16 = 2.5rem */
  width: 2.5rem; /* 40px/16 = 2.5rem */
}

/* Benefits Section */
.benefits-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #0f0f0f;
  color: #ffffff;
  padding: 5rem 10vw; /* 80px/16 = 5rem */
  gap: 3.75rem; /* 60px/16 = 3.75rem */
  flex-wrap: wrap; /* Added for responsiveness on smaller screens */
}

.benefits-content {
  flex: 1;
  min-width: 18.75rem; /* min-width to prevent content shrinking too much (300px) */
}

.benefits-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.benefits-image img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.section-label {
  text-transform: uppercase;
  opacity: 0.6;
  font-size: 1.08rem; /* Already rem */
  margin-bottom: 0.625rem; /* 10px/16 = 0.625rem */
}

.benefits-content h2 {
  font-size: clamp(2rem, 4vw, 3rem); /* Adaptive font size */
  font-weight: 800;
  margin-bottom: 1.875rem; /* 30px/16 = 1.875rem */
  line-height: 1.3;
}

.benefit-item {
  margin-bottom: 4rem; /* Already rem */
  padding-bottom: 1.25rem; /* 20px/16 = 1.25rem */
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1); /* 1px/16 = 0.0625rem */
}

.benefit-header {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.symbol {
  font-size: 1.5rem; /* Already rem */
  color: #dd4e69;
  width: 1.875rem; /* 30px/16 = 1.875rem */
}

.title {
  font-size: 1.44rem; /* Already rem */
  font-weight: 600;
}

.title.primary {
  color: #dd4e69;
}

.benefit-body {
  margin-left: 1.875rem; /* 30px/16 = 1.875rem */
  margin-top: 0.625rem; /* 10px/16 = 0.625rem */
  font-size: 1.14rem; /* Already rem */
  line-height: 1.6;
  display: none;
  opacity: 0.8;
}

.benefit-item.active .benefit-body {
  display: block;
}

/* service-block */
.service-block {
  position: relative;
  height: 50vh; /* Responsive height */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: white;
  padding-left: 8vw; /* Responsive padding */
  text-align: left;
}

.service-text {
  z-index: 2;
  max-width: 37.5rem; /* 600px/16 = 37.5rem */
  padding-top: 25vh; /* Responsive padding */
}

.category {
  text-transform: uppercase;
  font-size: 0.99rem; /* Already rem */
  opacity: 0.8;
  display: block;
  margin-bottom: 0.625rem; /* 10px/16 = 0.625rem */
}

.service-link {
  font-size: clamp(2rem, 5vw, 3rem); /* Adaptive font size */
  font-weight: bold;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #dd4e69;
}

/* Stats Section */
.stats-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7.5rem; /* 120px/16 = 7.5rem */
  padding: 5rem 0; /* 80px/16 = 5rem */
  background-color: #0f0f0f;
  flex-wrap: wrap; /* Allows stats to wrap on smaller screens */
}

.stat {
  display: flex;
  align-items: center;
  position: relative;
}

.stat-number {
  font-size: clamp(4rem, 8vw, 7.5rem); /* Adaptive font size */
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 0.09375rem #ffffff; /* 1.5px/16 = 0.09375rem */
  text-stroke: 0.09375rem #ffffff; /* 1.5px/16 = 0.09375rem */
  line-height: 1;
}

.stat-label {
  font-size: 1.5rem; /* Already rem */
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  margin-left: -2.5rem; /* -40px/16 = -2.5rem */
  z-index: 1;
  background-color: #0f0f0f;
  padding-left: 0.625rem; /* 10px/16 = 0.625rem */
}

/* Services Grid Section */
.services-grid-section {
  display: flex;
  justify-content: space-between;
  gap: 5rem; /* 80px/16 = 5rem */
  padding: 5rem 10vw; /* 80px/16 = 5rem */
  background-color: #0f0f0f;
  color: #ffffff;
  flex-wrap: wrap; /* Allows columns to stack on smaller screens */
}

.services-left {
  flex: 1;
  min-width: 18.75rem; /* 300px/16 = 18.75rem */
}

.services-title {
  font-size: clamp(2rem, 5vw, 3.36rem); /* Adaptive font size */
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1.875rem; /* 30px/16 = 1.875rem */
}

.services-right {
  flex: 2;
  display: grid;
  /* Use responsive grid for mobile first */
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); /* Min 240px wide columns, max 1fr */
  gap: 3.75rem 5rem; /* 60px/16 = 3.75rem, 80px/16 = 5rem */
}

.service-card {
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.1); /* 1px/16 = 0.0625rem */
  padding-top: 1.25rem; /* 20px/16 = 1.25rem */
}

.service-number {
  color: #555;
  font-size: 1.32rem; /* Already rem */
  margin-bottom: 0.625rem; /* 10px/16 = 0.625rem */
}

.service-card h3 {
  font-size: 1.56rem; /* Already rem */
  font-weight: 600;
  margin-bottom: 0.625rem; /* 10px/16 = 0.625rem */
}

.service-card h3 a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-card h3 a:hover {
  color: #dd4e69;
}

.description {
  font-size: 1.14rem; /* Already rem */
  opacity: 0.85;
  line-height: 1.6;
}

/* Testimonial Scroll */
.testimonial-scroll {
  background-color: #0f0f0f;
  height: 15vh; /* Responsive height */
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 1.25rem; /* 20px/16 = 1.25rem */
}

.testimonial-track {
  display: flex;
  gap: 5rem; /* 80px/16 = 5rem */
  white-space: nowrap;
  animation: scroll-left 20s linear infinite;
  align-items: center;
}

.testimonial {
  font-size: clamp(3rem, 7vw, 6rem); /* Adaptive font size */
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

/* These are specific uses, the .filled and .outlined classes are globally defined above */
/* .testimonial.filled {
  color: #ffffff;
} */

.testimonial.outlined {
  color: transparent;
  -webkit-text-stroke: 0.0625rem #ffffff; /* 1px/16 = 0.0625rem */
  text-stroke: 0.0625rem #ffffff; /* 1px/16 = 0.0625rem */
}

.testimonial-arrow {
  height: 7rem; /* Already rem */
  width: auto;
}

/* Testimonial Full */
.testimonial-full {
  background-color: #0f0f0f;
  color: #ffffff;
  padding: 5rem 10vw 2.5rem; /* 80px/16 = 5rem, 40px/16 = 2.5rem */
  text-align: center;
}

.testimonial-content {
  max-width: 50rem; /* 800px/16 = 50rem */
  margin: 0 auto 3.75rem; /* 60px/16 = 3.75rem */
}

.testimonial-avatar {
  width: 7.5rem; /* 120px/16 = 7.5rem */
  height: 7.5rem; /* 120px/16 = 7.5rem */
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.875rem; /* 30px/16 = 1.875rem */
  border: 0.1875rem solid #dd4e69; /* 3px/16 = 0.1875rem */
}

.testimonial-quote {
  font-size: clamp(1.2rem, 3vw, 1.8rem); /* Adaptive font size */
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1.25rem; /* 20px/16 = 1.25rem */
}

.testimonial-name {
  font-size: 1rem; /* Already rem */
  opacity: 0.7;
}

/* Testimonial Logos */
.testimonial-logos {
  overflow: hidden;
  padding: 1.25rem 0; /* 20px/16 = 1.25rem */
}

.logo-track {
  display: flex;
  gap: 3.75rem; /* 60px/16 = 3.75rem */
  align-items: center;
  white-space: nowrap;
  animation: logo-scroll 20s linear infinite;
}

.logo-track img {
  height: 12rem; /* Already rem */
  width: auto;
  flex-shrink: 0;
}

/* Keyframes remain as is */
@keyframes logo-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Testimonial Split */
.testimonial-split {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.75rem; /* 60px/16 = 3.75rem */
  padding: 5rem 10vw; /* 80px/16 = 5rem */
  background-color: #0f0f0f;
  color: #ffffff;
  flex-wrap: wrap; /* Allows sections to stack on smaller screens */
}

.testimonial-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 12.5rem; /* 200px/16 = 12.5rem */
}

.testimonial-title {
  font-size: 0.95rem; /* Already rem */
  opacity: 0.7;
}

.testimonial-divider {
  width: 0.0625rem; /* 1px/16 = 0.0625rem */
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
}

.testimonial-right {
  max-width: 37.5rem; /* 600px/16 = 37.5rem */
  font-size: clamp(1rem, 2.5vw, 1.4rem); /* Adaptive font size */
  font-weight: 600;
  line-height: 1.6;
  text-align: left;
}

/* Contact Section */
.contact-section {
  display: flex;
  gap: 5rem; /* 80px/16 = 5rem */
  padding: 5rem 10vw; /* 80px/16 = 5rem */
  background-color: #0f0f0f;
  color: #ffffff;
  flex-wrap: wrap; /* Allows columns to stack on smaller screens */
}

.contact-left,
.contact-right {
  flex: 1;
  min-width: 18.75rem; /* 300px/16 = 18.75rem */
}

.form-box {
  background-color: #151515;
  padding: 2.5rem; /* 40px/16 = 2.5rem */
  border-radius: 0.375rem; /* 6px/16 = 0.375rem */
}

.contact-left h2 {
  font-size: clamp(1.5rem, 3vw, 2rem); /* Adaptive font size */
  margin-bottom: 0.625rem; /* 10px/16 = 0.625rem */
}

.contact-left p {
  font-size: 0.9rem; /* Already rem */
  opacity: 0.7;
  margin-bottom: 1.875rem; /* 30px/16 = 1.875rem */
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.5625rem; /* 25px/16 = 1.5625rem */
}

label {
  font-weight: 600;
  font-size: 1rem; /* Already rem */
}

input,
textarea {
  background: transparent;
  border: none;
  border-bottom: 0.0625rem solid #555; /* 1px/16 = 0.0625rem */
  color: #fff;
  padding: 0.625rem 0; /* 10px/16 = 0.625rem */
  font-size: 1rem; /* Already rem */
  resize: none;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #dd4e69;
}

.contact-right .section-label {
  font-size: 0.9rem; /* Already rem */
  margin-bottom: 0.625rem; /* 10px/16 = 0.625rem */
}

.contact-right h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem); /* Adaptive font size */
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 1.25rem; /* 20px/16 = 1.25rem */
}

.contact-right p {
  font-size: 1rem; /* Already rem */
  line-height: 1.7;
  margin-bottom: 0.625rem; /* 10px/16 = 0.625rem */
}

.contact-icons {
  margin-top: 1.25rem; /* 20px/16 = 1.25rem */
  display: flex;
  gap: 1.25rem; /* 20px/16 = 1.25rem */
  font-size: 1.3rem; /* Already rem */
}

.contact-icons a {
  color: #ffffff;
  transition: color 0.3s ease;
}

.contact-icons a:hover {
  color: #dd4e69;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 40.625rem; /* 650px/16 = 40.625rem or use vh for height */
  /* height: 80vh; */ /* Alternative for map height */
  overflow: hidden;
  border-radius: 0.375rem; /* 6px/16 = 0.375rem */
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(100%) brightness(0.5);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 15, 15, 0.2);
  pointer-events: none;
}

/* Footer */
.site-footer {
  background-color: #0f0f0f;
  color: #ffffff;
  padding: 3.75rem 5vw 1.875rem; /* 60px/16 = 3.75rem, 30px/16 = 1.875rem */
  font-size: 1.33rem; /* Already rem */
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr; /* Consider responsive grid here with media queries */
  align-items: flex-start;
  gap: 5rem; /* 80px/16 = 5rem */
  /* For mobile: */
  grid-template-columns: 1fr;
  text-align: center;
}
/* Add media query for desktop layout for .footer-top */
@media (min-width: 768px) { /* Adjust breakpoint as needed */
  .footer-top {
    grid-template-columns: auto 1fr;
    text-align: left;
  }
}


.footer-logo {
  flex: 1;
  min-width: 9.375rem; /* 150px/16 = 9.375rem */
  display: flex; /* For centering logo in mobile footer-top */
  justify-content: center; /* For centering logo in mobile footer-top */
}
@media (min-width: 768px) {
  .footer-logo {
    justify-content: flex-start; /* Reset for desktop */
  }
}

.footer-logo img {
  width: 15rem; /* Already rem */
  height: auto;
}

.footer-columns {
  flex: 3;
  display: flex;
  justify-content: center;
  column-gap: 6.25rem; /* 100px/16 = 6.25rem */
  row-gap: 3.125rem; /* 50px/16 = 3.125rem */
  flex-wrap: wrap;
  text-align: left; /* Default for individual columns */
}
/* For mobile, if you want columns to center */
@media (max-width: 767px) {
  .footer-columns {
    text-align: center; /* Center column content on mobile */
  }
}


.footer-column {
  min-width: 13.75rem; /* 220px/16 = 13.75rem */
  max-width: 18.75rem; /* 300px/16 = 18.75rem */
}

.footer-column h4 {
  font-size: 1.4rem; /* Already rem */
  font-weight: 700;
  margin-bottom: 0.9375rem; /* 15px/16 = 0.9375rem */
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 2rem; /* Already rem */
}

.footer-column a {
  color: #ffffff;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #dd4e69;
}

.subscribe-icon {
  font-weight: 700;
  margin-left: 0.625rem; /* 10px/16 = 0.625rem */
}

.subtext {
  opacity: 0.7;
  margin: 0.625rem 0; /* 10px/16 = 0.625rem */
  font-size: 1.19rem; /* Already rem */
}

.contact-icons {
  margin-top: 0.625rem; /* 10px/16 = 0.625rem */
  display: flex; /* Added display flex to ensure spacing */
  justify-content: center; /* Center icons on mobile */
}
@media (min-width: 768px) {
  .contact-icons {
    justify-content: flex-start; /* Reset for desktop */
  }
}


.contact-icons a {
  color: #ffffff;
  font-size: 1.68rem; /* Already rem */
  margin: 0 0.625rem; /* 10px/16 = 0.625rem */
  transition: color 0.3s ease;
}

.contact-icons a:hover {
  color: #dd4e69;
}

.footer-bottom {
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.05); /* 1px/16 = 0.0625rem */
  padding-top: 1.25rem; /* 20px/16 = 1.25rem */
  margin-top: 3.125rem; /* 50px/16 = 3.125rem */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem; /* 20px/16 = 1.25rem */
  text-align: center;
  font-size: 1.1rem; /* Already rem */
}

.footer-links a {
  margin: 0 0.9375rem; /* 15px/16 = 0.9375rem */
  color: #ffffff;
}

.footer-links a:hover {
  color: #dd4e69;
}

.footer-column > *:not(:last-child) {
  margin-bottom: 1.5625rem; /* 25px/16 = 1.5625rem */
}