:root {
  /* Colors */
  --white: rgba(255, 255, 255, 1);
  --secondary-text: rgba(97, 100, 107, 1);
  --black: rgba(30, 30, 30, 1);
  --color-primary: #0e497b;
  --color-primary-light: #43a9ff;
  --gradient-primary: linear-gradient(
    90deg,
    rgba(14, 73, 123, 1) 0%,
    rgba(67, 169, 255, 1) 100%
  );
  --gradient-primary-faded: linear-gradient(
    90deg,
    rgba(14, 73, 123, 0.1) 0%,
    rgba(67, 169, 255, 0.1) 100%
  );

  /* Typography */
  --font-family-sans: "Poppins", sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;

  --font-size-sm: 12px;
  --font-size-base: 14px;
  --font-size-md: 16px;
  --font-size-lg: 20px;
  --font-size-xl: 40px;
  --font-size-xxl: 50px;
}
/* --- Global Styles --- */

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family-sans); /* Set a global default font */
  -webkit-font-smoothing: antialiased; /* Improve font rendering on WebKit browsers */
  overflow-x: hidden; /* Prevents horizontal scrollbar during animations */
  box-sizing: border-box; /* Ensures padding and border are included in the element's total width and height */
}

.header {
  display: flex;
  background-color: #fff;
  width: 100%;
  height: 86px;
  box-sizing: border-box;
  position: sticky; /* Make header stick to the top */
  top: 0; /* Position it at the top */
  z-index: 1000; /* Ensure it's above other content */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* Add a subtle shadow for depth */
}

.header__nav {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1280px; /* Example max-width for large screens */
  margin: 0 auto; /* Center the nav content */
  gap: 20px; /* Space between logo and nav */
  padding: 15px 30px; /* Use more flexible padding */
}

.header__logo-link {
  display: block;
  line-height: 0; /* Removes extra space below the image */
  flex-shrink: 0; /* Prevents the logo from shrinking */
}

.header__logo {
  width: 174px;
  height: 45.15px;
}

.header__menu-toggle {
  display: none; /* Hidden by default on desktop */
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  margin-left: auto; /* Pushes the button to the right */
}

.header__menu-icon {
  display: block;
  position: relative;
  width: 24px;
  height: 2px;
  background-color: #333;
  transition: background-color 0.2s ease-in-out;
}

.header__menu-icon::before,
.header__menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: transform 0.3s ease-in-out;
}

.header__menu-icon::before {
  top: -8px;
}

.header__menu-icon::after {
  bottom: -8px;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 40px; /* Adjust gap between nav items */
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-item {
  /* The list item itself doesn't need much styling */
}

.header__nav-link {
  display: block;
  text-decoration: none;
  font-weight: var(--font-weight-regular);
  color: var(--secondary-text);
  font-size: var(--font-size-md);
  transition: color 0.3s ease-out;
  position: relative;
  padding: 5px 0;
}

.header__nav-link--active {
  font-weight: var(--font-weight-semibold);
  background: var(--gradient-primary);
  -webkit-background-clip: text !important;
  background-clip: text;
  color: transparent;
}

.header__nav-link--active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 25px;
  height: 2px;
  border-radius: 50px;
  background: var(--gradient-primary);
}

.header__nav-link:hover,
.header__nav-link:focus {
  color: var(--color-primary); /* A nice hover color */
}

.header__nav-link--active:hover,
.header__nav-link--active:focus {
  color: transparent; /* Keep the gradient text on hover for active link */
  opacity: 0.8;
}

.header__nav-link:focus-visible {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
  border-radius: 2px;
}

/* ========================================
   Page Content
   ======================================== */
.page-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 600px;
  background: url(./assets/img/BackgroundHero.jpg) no-repeat center center;
  background-size: cover;
  background-position: 50% 50%;
  padding: 80px 0;
  box-sizing: border-box;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  max-width: 1260px;
  padding: 0 30px;
  opacity: 0; /* Start as transparent for animation */
  /* This animation will run on page load */
  animation: slideInFromLeft 1.5s ease-out forwards;
  animation-delay: 0.2s;
}

.hero__text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.hero__tagline-wrapper {
  max-width: 540px;
  background-color: #ffffff1a;
  padding: 5px 35px;
  border-radius: 8px;
  margin-bottom: 10px;
  display: inline-block;
}

.hero__tagline {
  font-weight: var(--font-weight-medium);
  color: var(--white);
  font-size: var(--font-size-md);
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  margin: 0;
}

.hero__title {
  position: relative;
  max-width: 620px;
  color: var(--white);
  font-size: var(--font-size-xxl);
  letter-spacing: 0;
  line-height: 65px;
  margin: 0;
}

.hero__title--strong {
  font-weight: var(--font-weight-semibold);
}

.hero__title--regular {
  font-weight: var(--font-weight-regular);
}

.hero__subtitle {
  position: relative;
  max-width: 620px;
  align-self: stretch;
  font-weight: var(--font-weight-regular);
  color: var(--white);
  font-size: var(--font-size-base);
  letter-spacing: 0;
  line-height: normal;
  margin: 0;
}

/* ========================================
   About Section
   ======================================== */
.about {
  position: relative;
  width: 100%;
  background-color: var(--white);
  padding: 80px 0;
  box-sizing: border-box;
}

.about__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}

.about__image {
  position: relative;
  width: 618px;
  height: 609px;
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.about__content {
  display: flex;
  flex-direction: column;
  flex: 1; /* Allow content to take up remaining space */
  max-width: 618px;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  position: relative;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.about__main-text {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.section-tag__wrapper {
  width: 167px;
  background: var(--gradient-primary-faded);
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-tag__text {
  background: var(--gradient-primary);
  -webkit-background-clip: text !important;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  font-weight: var(--font-weight-medium);
  color: transparent;
  font-size: var(--font-size-md);
  letter-spacing: 0;
  line-height: normal;
  margin: 0;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about__description {
  position: relative;
  margin: 0;
  align-self: stretch;
  font-weight: var(--font-weight-regular);
  color: var(--secondary-text);
  font-size: var(--font-size-base);
  letter-spacing: 0;
  line-height: normal;
}
.about__description p {
  margin: 0;
}
.about__description {
  display: flex;
  flex-direction: column;
  gap: 1.5em; /* Spacing between paragraphs */
}

.about__description,
.signup__description {
  color: var(--secondary-text);
  font-size: var(--font-size-base);
  letter-spacing: 0;
  line-height: normal;
}

.about__heading,
.offerings__heading,
.features__heading,
.signup__heading {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--black);
  line-height: 1.3;
  margin: 20px 0;
}
.signup__heading {
  margin-top: 20px;
  margin-bottom: 0;
}

.about__mission-vision {
  display: flex;
  flex-direction: column;
  max-width: 618px;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

.about__subheading {
  font-weight: var(--font-weight-semibold);
  color: var(--black);
  font-size: var(--font-size-base);
  white-space: nowrap;
  margin: 0 0 5px 0;
}

.about__subheading-text {
  align-self: stretch;
  font-weight: var(--font-weight-regular);
  color: var(--secondary-text);
  font-size: var(--font-size-base);
  letter-spacing: 0;
  line-height: normal;
  margin: 0;
}

/* ========================================
   Animations
   ======================================== */

.visible {
  opacity: 1 !important;
  transform: translateX(0) translateY(0) !important;
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(-50%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ========================================
   Offerings Section
   ======================================== */
.offerings {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background-color: #f9f9f9;
  box-sizing: border-box;
}

.offerings__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.offerings__header {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.section-tag__wrapper--light {
  width: 170px;
  background: var(--gradient-primary-faded);
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offerings__grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.offerings__row {
  display: flex;
  gap: 20px;
  align-items: stretch; /* Make cards in a row equal height */
  position: relative;
  align-self: stretch;
  width: 100%;
}

.offerings-card {
  position: relative;
  flex: 1; /* Allow cards to grow and fill space */
  background-color: var(--white);
  border-radius: 8px;
  border: 1px solid #1e1e1e33;
  display: flex;
  transition: border-color 0.3s ease-out;
}

.offerings-card::before,
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px; /* Match border width */
  border-radius: 8px; /* Match card's border-radius */
  background: var(--gradient-primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  pointer-events: none; /* Allow clicks to pass through */
}

.offerings-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 30px;
  width: 100%;
}

.offerings-card__title {
  align-self: stretch;
  font-weight: var(--font-weight-semibold);
  color: var(--black);
  font-size: var(--font-size-lg);
  margin: 0;
  transition: color 0.3s ease-out;
}

.offerings-card__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.offerings-card__item {
  align-self: stretch;
  font-weight: var(--font-weight-regular);
  color: var(--black);
  font-size: var(--font-size-md);
  line-height: 1.5;
}

/* ======================================== Features Section ======================================== */

.features {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  padding: 80px 0;
  box-sizing: border-box;
}

.features__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.features__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

/* This rule was duplicated, I've removed the redundant one */
/* .features__header { ... } */

.features__header .section-tag__wrapper--light {
  width: 196px;
  background: var(--gradient-primary-faded);
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features__grid {
  display: flex;
  align-items: stretch; /* Make cards equal height */
  justify-content: space-between;
  gap: 20px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.feature-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  background-color: #ffffff;
  padding: 40px 20px;
  border-radius: 8px;
  border: 1px solid #1e1e1e33;
  transition: border-color 0.3s ease-out;
}

.feature-card__icon {
  position: relative;
  width: 70px;
  height: 70px;
}

.feature-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}

.feature-card__stat {
  position: relative;
  align-self: stretch;
  background: var(--gradient-primary);
  -webkit-background-clip: text !important;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  font-weight: var(--font-weight-semibold);
  color: transparent;
  font-size: var(--font-size-lg);
  text-align: center;
}

.feature-card__title {
  color: var(--black);
  position: relative;
  align-self: stretch;
  margin: 0;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-lg);
  text-align: center;
}

.feature-card__description,
.signup__description {
  position: relative;
  align-self: stretch;
  font-weight: var(--font-weight-regular);
  color: var(--secondary-text);
  font-size: var(--font-size-base);
  letter-spacing: 0;
  line-height: normal;
}

.feature-card__description {
  min-height: 50px;
  max-width: 265px;
}
.feature-card__description {
  text-align: center;
}

/* ======================================== Signup Section ======================================== */
.signup {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 84px 20px;
  background-color: #f9f9f9;
}

.signup__description p {
  margin: 0;
}

.signup__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  max-width: 1280px;
}

.signup__content {
  display: flex;
  flex-direction: column;
  width: 618px;
  align-items: flex-start;
  gap: 17px;
  position: relative;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.signup__buttons {
  display: flex;
  width: 618px;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  flex: 0 0 auto;
}

.btn.btn--solid {
  position: relative;
  width: 300px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--gradient-primary);
  color: var(--white);
}

.btn.btn--outline {
  position: relative;
  width: 300px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: none;
}

.btn.btn--outline::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 8px;
  background: var(--gradient-primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
}

.btn__text--gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text !important;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  color: transparent;
}

.signup__image {
  position: relative;
  width: 50%;
  height: 400px;
  align-self: stretch;
  background-image: url(./assets/img/onBoard.png);
  background-size: cover;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  background-position: 50% 50%;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

/* ======================================== Footer ======================================== */
.footer {
  display: flex;
  flex-direction: column;
  height: 172px;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--gradient-primary);
}

.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1280px;
  margin: 0 40px;
  gap: 19px;
  align-self: stretch;
}

.footer__section {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.footer__details {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.footer__address-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1;
  position: relative;
}

.footer__address-line {
  position: relative;
  width: fit-content;
  font-weight: var(--font-weight-regular);
  color: var(--white);
  font-size: var(--font-size-sm);
  line-height: 1.5;
  margin: 0;
  padding-left: 14px;
}

.footer__address-line::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
}

.footer__email-group {
  justify-content: flex-end;
  display: flex;
  align-items: center;
}

.footer__link {
  position: relative;
  width: fit-content;
  font-weight: var(--font-weight-regular);
  color: var(--white);
  font-size: var(--font-size-sm);
}

.footer__divider {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 1px;
}

.footer__bottom-bar {
  justify-content: space-between;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}

.footer__social-group {
  display: flex;
  width: 260px;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  position: relative;
}

.footer__social-icon {
  position: relative;
  width: 32px;
  height: 32px;
  aspect-ratio: 1;
}
/* ========================================
   INJECT ORIGINAL CSS CODE HERE
   ======================================== */

.offerings-card__list {
  list-style: "•  ";
  padding: 0;
  margin: 0 0 0 20px;
}

.offerings-card__item {
}

.offerings-card:hover,
.feature-card:hover {
  border-color: transparent;
}

.offerings-card:hover .offerings-card__title {
  color: var(--color-primary);
}

.offerings-card:hover::before,
.feature-card:hover::before {
  opacity: 1;
}

.btn {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
}

.btn:hover {
  opacity: 0.9;
}

.btn:focus-visible {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

.footer__divider {
  border: none;
  border-top: 0.5px solid var(--white);
  margin: 0;
}

.footer__social-link {
  display: inline-block;
  transition: opacity 0.3s ease-out;
}

.footer__social-link:focus-visible {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
  border-radius: 4px;
}

.footer__email-group a {
  color: var(--white);
  text-decoration: none;
}

.footer__email-group a:focus-visible {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
  border-radius: 4px;
}

.footer__address-group address {
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

/* --- Responsive Styles --- */
@media (max-width: 768px) {
  .header__nav {
    justify-content: space-between; /* Space out logo and menu button */
  }

  .header__menu-toggle {
    display: block; /* Show the hamburger button */
  }

  .header__nav-list {
    display: none; /* Hide the nav list by default */
    position: absolute;
    top: 86px; /* Position below the header */
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .header__nav-item {
    width: 100%;
    text-align: left;
  }

  .header__nav-link {
    padding: 15px 20px;
    width: 100%;
  }

  .header__nav-link--active::after {
    /* Reposition the active underline for mobile view */
    left: 20px; /* Match the link's left padding */
    transform: none;
    bottom: 8px;
  }

  /* --- Styles for when the mobile menu is open --- */
  .header.header--nav-open .header__nav-list {
    display: flex; /* Show the nav list */
  }

  /* Animate hamburger to an 'X' */
  .header.header--nav-open .header__menu-icon {
    background-color: transparent; /* Hide the middle bar */
  }

  .header.header--nav-open .header__menu-icon::before {
    transform: translateY(8px) rotate(45deg);
  }

  .header.header--nav-open .header__menu-icon::after {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* --- General Section Adjustments --- */
  .hero,
  .about {
    padding: 60px 0;
  }

  .offerings,
  .features {
    padding: 0;
  }

  .hero__content,
  .about__container,
  .offerings__container,
  .features__container,
  .signup__container {
    padding: 60px 20px;
  }

  /* --- Hero Section --- */
  .hero {
    min-height: auto;
    text-align: center;
  }

  .hero__content {
    align-items: center;
  }

  .hero__text-group {
    align-items: center;
  }

  .hero__title {
    font-size: var(--font-size-xl);
    line-height: 1.3;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .about__heading,
  .offerings__heading,
  .features__heading,
  .signup__heading {
    font-size: 32px; /* Reduced heading size for mobile */
  }

  /* --- About Section --- */
  .about__container {
    flex-direction: column;
    gap: 30px;
  }

  .about__image {
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .about__content {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .about__main-text {
    gap: 20px;
  }

  .about__mission-vision {
    width: 100%;
    text-align: left;
  }

  /* --- Offerings Section --- */
  .offerings__row {
    flex-direction: column;
    width: 100%;
  }

  .offerings-card {
    height: auto;
    box-sizing: border-box;
  }

  /* --- Features Section --- */
  .features__grid {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .feature-card {
    width: 100%;
    height: auto;
    padding: 30px 20px;
    box-sizing: border-box;
  }

  /* --- Signup Section --- */
  .signup__container {
    flex-direction: column-reverse;
    padding: 0 20px;
  }

  .signup__content {
    width: 100%;
    box-sizing: border-box;
    margin-top: 40px;
  }

  .signup__image {
    width: 100%;
    min-height: 250px;
    border-radius: 8px 8px 0 0;
  }

  .signup__buttons {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .btn.btn--solid,
  .btn.btn--outline {
    width: 100%;
  }

  /* --- Footer --- */
  .footer,
  .footer__content {
    height: auto;
    padding: 30px 20px;
    box-sizing: border-box;
    margin: 0;
  }

  .footer__details,
  .footer__bottom-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .footer__bottom-bar {
    flex-direction: column-reverse;
  }

  .footer__social-group {
    justify-content: center;
  }
}
