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

body {
  font-family: "Bricolage Grotesque", sans-serif;
  background-color: #f0ecdc;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Navbar styles */
.navbar {
  margin: 50px 60px 0px 60px;
  display: flex;
  justify-content: space-between;
  padding: 10px 0px 10px 0px;
  align-items: center;
  position: relative;
}

.logo {
  width: 146px;
  height: 30px;
  overflow: hidden;
  position: relative;
}

.logo img {
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.6s ease;
  transform-origin: left center;
  will-change: transform;
}

.logo:hover img {
  transform: scale(1.08);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.logo:hover::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.13);
  transform: rotate(25deg);
  animation: shine 1.5s ease-out;
}

@keyframes shine {
  0% {
    left: -60%;
  }

  70% {
    left: 110%;
  }

  100% {
    left: 110%;
  }
}

@keyframes logoIntro {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .logo img {
    animation: logoIntro 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both;
    animation-delay: 0.4s;
  }
}

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

.nav-links a {
  font-size: 18px;
  text-decoration: none;
  font-weight: 500;
  color: #000;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links a:hover {
  color: #454543;
}

.arrow-down {
  width: 18px;
  height: 18px;
}

.nav-cta {
  align-items: center;
  border: 0.8px solid #000;
  display: flex;
  font-family: Inter;
  font-weight: 500;
  gap: 5px;
  padding: 16px 32px;
  background-color: #eafd32;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    background-color 0.4s ease, border-color 0.4s ease;
  border: none;
  font-size: 16px;
}

.nav-cta:hover {
  transform: translateY(-3px) scale(1.02);
  background-color: #000;
  border-color: #eafd32;
  color: #eafd32;
  box-shadow: 0 10px 20px rgba(234, 253, 50, 0.25);
}

.nav-cta img {
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55),
    filter 0.4s ease;
}

.nav-cta:hover img {
  transform: translateX(4px) rotate(-15deg);
  filter: invert(89%) sepia(62%) saturate(4587%) hue-rotate(10deg)
    brightness(104%) contrast(99%);
}

.nav-cta:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 2px 5px rgba(234, 253, 50, 0.3);
  transition-duration: 0.1s;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #000;
  transition: 0.3s;
}

/* Hero section styles */
.hero-section {
  background-color: #f0ecdc;
  padding: 130px 60px 130px 60px;
  display: flex;
  align-items: center;
  gap: 50px;
}

.right-content {
  flex: 1;
  max-width: 800px;
}

.hero-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin-bottom: 20px;
}

.hero-text {
  font-size: 220px;
  font-weight: 700;
  line-height: 110px;
  color: #000;
}

.text-wrapper {
  color: #eafd32;
  font-size: 220px;
  font-weight: 700;
  line-height: 110px;
  text-shadow: 2px 2px 0 #000, 4px 4px 0 #000;
}

.hero-content {
  font-size: 38px;
  line-height: 54px;
  margin: 40px 0px 0px;
  width: 792px;
  height: 351px;
}

.text-style {
  font-family: "Zilla Slab", serif;
  font-weight: 500;
  font-style: italic;
}

.left-content {
  flex: 1;
  perspective: 1200px;
  max-width: 590px;
}

.left-content img {
  width: 100%;
  height: auto;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
  transform-origin: center;
  transform-style: preserve-3d;
  will-change: transform;
  backface-visibility: hidden;
}

@keyframes heroEntrance {
  0% {
    opacity: 0;
    transform: translateX(-80px) rotateY(15deg) scale(0.95);
    filter: blur(4px);
  }

  100% {
    opacity: 1;
    transform: translateX(0) rotateY(0) scale(1);
    filter: blur(0);
  }
}

.left-content img {
  animation: heroEntrance 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.left-content:hover img {
  transform: translateZ(30px) rotateY(-5deg) scale(1.03);
  filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.2)) brightness(1.05);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0.5deg);
  }

  50% {
    transform: translateY(-10px) rotate(-0.5deg);
  }
}

.left-content img {
  animation: heroEntrance 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards,
    float 8s ease-in-out infinite 1.5s;
}

.hero-distribtion-wrap {
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 50px 0px 0px;
  flex-wrap: wrap;
}

.hero-btn {
  align-items: center;
  border-color: #000;
  display: flex;
  font-family: Inter;
  font-weight: 500;
  gap: 5px;
  padding: 16px 32px;
  background-color: #eafd32;
  cursor: pointer;
  border: none;
  font-size: 16px;
}

.hero-distribtion-wrap p {
  font-size: 18px;
  line-height: 25.2px;
}

/* About section styles */
.about-section {
  background-color: #faf6ea;
  padding: 130px 60px 130px 60px;
}

.about-content {
  display: flex;
  gap: 100px;
  align-items: center;
}

.right-container {
  flex: 1;
}

.right-container img {
  width: 100%;
  height: auto;
}

.left-container {
  flex: 1;
}

.counter {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin: 26px 0px 26px 0px;
}

.one {
  text-align: left;
}

.about-counter-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 76px;
  font-weight: 700;
  line-height: 98.8px;
  margin: 0px 0px 10px;
}

.counter-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
}

.about-distribution {
  font-size: 32px;
  line-height: 44.8px;
  width: 758px;
  height: 134px;
  margin: 50px 0px 26px 0px;
}

.about-btn {
  background-color: #eafd32;
  font-family: Inter;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 32px;
  cursor: pointer;
  margin: 50px 0px 26px 0px;
}

/* Work section styles */
.work-section {
  background-color: #f0ecdc;
  padding: 100px 60px 130px 60px;
}

.work-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.work-heading {
  font-size: 76px;
  font-weight: 700;
  line-height: 98.8px;
  margin: 0px 0px 10px;
}

.work-highlight {
  font-family: "Zilla Slab", serif;
}

.work-body-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.work-grid-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-bottom: 100px;
}

.work-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 675/480;
  object-fit: cover;
}

.client-logo-list-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  padding: 50px 0;
}

.clients img {
  width: 160px;
  height: 40px;
  object-fit: contain;
}

/* Service section styles */
.service-section {
  background-color: #faf6ea;
  padding: 130px 60px 130px 60px;
}

.service-title-section {
  font-size: 76px;
  font-weight: 700;
  line-height: 98.8px;
  margin-bottom: 100px;
}

.service-highlight {
  font-family: "Zilla Slab", serif;
}

.service-grid,
.service-grid-last {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 30px;
  margin-bottom: 50px;
  transition: background-color 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.service-grid:hover,
.service-grid-last:hover {
  background-color: #f0ecdc;
}

.service-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 44.8px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: 15px;
}

.service-image img {
  width: 200px;
  height: auto;
  margin: 15px 0;
}

.service-subheading {
  font-size: 18px;
  line-height: 25.2px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  margin-top: 15px;
}

/* Video section styles */
.video-section {
  background-size: cover;
  background-position: center;
  height: 700px;
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80");
}

.pause-btn {
  background-color: #eafd32;
  border: 0.8px solid #000;
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 12px 30px;
  cursor: pointer;
}

/* Blog section styles */
.blog-section {
  padding: 50px 60px 130px 60px;
}

.blog-title-section {
  font-size: 76px;
  font-weight: 700;
  line-height: 98.8px;
  margin-bottom: 50px;
}

.blog-highlight {
  font-family: "Zilla Slab", serif;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.blog-content-wrap {
  display: flex;
  background-color: #eafd32;
  height: 234px;
}

.blog-image {
  flex: 1;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-text-content {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-title-wrap {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
}

.blog-publish-title {
  font-size: 14px;
  color: #666;
}

/* CTA section styles */
.cta-section {
  background-color: #f0ecdc;
  padding: 130px 60px;
}

.cta-content {
  font-weight: 600;
  line-height: 114px;
  text-align: center;
  font-size: 76px;
}

.social-media {
  font-family: "Zilla Slab", serif;
  font-weight: 700;
  color: #eafd32;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-decoration: underline;
}

/* Footer section styles */
.footer-section {
  background-color: black;
  position: relative;
  overflow: hidden;
}

.footer-container {
  padding: 130px 60px;
  display: flex;
  gap: 100px;
  color: #fff;
  position: relative;
  z-index: 2;
}

.footer-left {
  flex: 1;
}

.footer-logo img {
  margin-bottom: 30px;
  width: 400px;
  height: auto;
  max-width: 100%;
}

.footer-distribation {
  font-size: 18px;
  line-height: 25.2px;
  margin: 30px 0px 0px;
  width: 400px;
  height: 101px;
}

.footer-menu-list,
.footer-link {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-menu-list a,
.footer-link a {
  font-size: 18px;
  line-height: 25.2px;
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-menu-list a:hover,
.footer-link a:hover {
  color: #eafd32;
}

.footer-img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.footer-img img {
  width: 400px;
  height: auto;
  opacity: 0.3;
}

/* Responsive Design */
/* Large desktops and laptops */
@media screen and (min-width: 1440px) {
  .hero-text,
  .text-wrapper {
    font-size: 240px;
    line-height: 120px;
  }

  .hero-content {
    font-size: 42px;
    line-height: 58px;
    width: 100%;
    max-width: 850px;
  }

  .about-distribution {
    width: 100%;
    max-width: 850px;
  }

  .footer-distribation {
    width: 100%;
    max-width: 500px;
  }
}

/* Medium desktops and small laptops */
@media screen and (max-width: 1200px) {
  .navbar {
    margin: 30px 40px 0px 40px;
  }

  .hero-section,
  .about-section,
  .work-section,
  .service-section,
  .blog-section,
  .cta-section,
  .footer-container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-text,
  .text-wrapper {
    font-size: 180px;
    line-height: 90px;
  }

  .hero-content {
    font-size: 32px;
    line-height: 45px;
    width: 100%;
    max-width: 700px;
    height: auto;
  }

  .work-heading,
  .about-counter-title,
  .service-title-section,
  .blog-title-section,
  .cta-content {
    font-size: 64px;
  }

  .about-distribution {
    font-size: 28px;
    line-height: 38px;
    width: 100%;
    max-width: 650px;
    height: auto;
  }

  .footer-distribation {
    width: 100%;
    max-width: 350px;
  }

  .footer-logo img {
    width: 350px;
  }

  .footer-img img {
    width: 350px;
  }
}

/* Tablets and large mobile devices (landscape) */
@media screen and (max-width: 1024px) {
  .navbar {
    margin: 25px 30px 0px 30px;
  }

  .hero-section,
  .about-section,
  .work-section,
  .service-section,
  .blog-section,
  .cta-section,
  .footer-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero-text,
  .text-wrapper {
    font-size: 160px;
    line-height: 80px;
  }

  .hero-content {
    font-size: 28px;
    line-height: 40px;
    width: 100%;
    max-width: 600px;
  }

  .work-heading,
  .about-counter-title,
  .service-title-section,
  .blog-title-section,
  .cta-content {
    font-size: 56px;
    line-height: 70px;
  }

  .about-distribution {
    font-size: 26px;
    line-height: 36px;
    width: 100%;
    max-width: 550px;
  }

  .service-grid,
  .service-grid-last {
    flex-direction: column;
    gap: 30px;
  }

  .service-image {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .service-image img {
    width: 160px;
  }

  .service-heading,
  .service-subheading {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .service-heading {
    margin-bottom: 15px;
  }

  .service-subheading {
    margin-top: 15px;
  }

  .counter {
    gap: 30px;
  }

  .footer-container {
    gap: 60px;
  }

  .footer-logo img {
    width: 300px;
  }

  .footer-distribation {
    width: 100%;
    max-width: 300px;
  }
}

/* Tablets and small mobile devices (portrait) */
@media screen and (max-width: 768px) {
  .navbar {
    margin: 20px 20px 0px 20px;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #f0ecdc;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

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

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero-section {
    flex-direction: column-reverse;
    padding: 80px 20px;
    text-align: center;
    gap: 30px;
  }

  .hero-text,
  .text-wrapper {
    font-size: 120px;
    line-height: 60px;
  }

  .hero-content {
    font-size: 24px;
    line-height: 32px;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 20px 0 0;
  }

  .hero-distribtion-wrap {
    justify-content: center;
    gap: 20px;
    margin: 30px 0 0;
  }

  .about-section {
    padding: 80px 20px;
  }

  .about-content {
    flex-direction: column;
    gap: 50px;
  }

  .counter {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .about-distribution {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 30px 0 20px;
  }

  .work-section {
    padding: 80px 20px;
  }

  .work-title-wrap {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
  }

  .work-heading {
    font-size: 48px;
    line-height: 52px;
  }

  .work-grid-section {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }

  .client-logo-list-section {
    gap: 30px;
    padding: 30px 0;
  }

  .clients img {
    width: 120px;
    height: 30px;
  }

  .service-section {
    padding: 80px 20px;
  }

  .service-title-section {
    font-size: 48px;
    line-height: 52px;
    margin-bottom: 60px;
  }

  .service-grid,
  .service-grid-last {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 20px 10px;
    margin-bottom: 30px;
  }

  .service-image {
    margin: 15px 0;
  }

  .service-image img {
    width: 150px;
  }

  .service-heading,
  .service-subheading {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .video-section {
    height: 400px;
  }

  .blog-section {
    padding: 80px 20px;
  }

  .blog-title-section {
    font-size: 48px;
    line-height: 52px;
    margin-bottom: 30px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .blog-content-wrap {
    flex-direction: column;
    height: auto;
  }

  .blog-text-content {
    padding: 20px;
  }

  .cta-section {
    padding: 80px 20px;
  }

  .cta-content {
    font-size: 48px;
    line-height: 60px;
  }

  .footer-container {
    padding: 80px 20px;
    flex-direction: column;
    gap: 50px;
  }

  .footer-img {
    display: none;
  }

  .footer-logo img {
    width: 250px;
  }

  .footer-distribation {
    width: 100%;
    max-width: 100%;
  }
}

/* Large mobile devices */
@media screen and (max-width: 480px) {
  .hero-text,
  .text-wrapper {
    font-size: 80px;
    line-height: 40px;
  }

  .hero-content {
    font-size: 20px;
    line-height: 28px;
  }

  .work-heading,
  .service-title-section,
  .blog-title-section {
    font-size: 36px;
    line-height: 40px;
  }

  .about-counter-title {
    font-size: 48px;
    line-height: 52px;
  }

  .about-distribution {
    font-size: 20px;
    line-height: 28px;
  }

  .service-heading {
    font-size: 24px;
    line-height: 32px;
  }

  .service-heading,
  .service-subheading {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .service-heading {
    margin-bottom: 15px;
  }

  .service-subheading {
    margin-top: 15px;
  }

  .service-image img {
    width: 150px;
  }

  .cta-content {
    font-size: 36px;
    line-height: 44px;
  }

  .nav-cta,
  .hero-btn,
  .about-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .counter {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .about-counter-title {
    font-size: 56px;
  }

  .counter-title {
    font-size: 16px;
  }

  .work-grid-section {
    gap: 25px;
  }

  .client-logo-list-section {
    gap: 20px;
  }

  .clients img {
    width: 100px;
    height: 25px;
  }

  .blog-grid {
    gap: 25px;
  }

  .blog-content-wrap {
    height: auto;
  }

  .blog-text-content {
    padding: 15px;
  }

  .blog-title-wrap {
    font-size: 20px;
  }
}

/* Small mobile devices */
@media screen and (max-width: 375px) {
  .hero-text,
  .text-wrapper {
    font-size: 70px;
    line-height: 35px;
  }

  .hero-content {
    font-size: 18px;
    line-height: 26px;
  }

  .work-heading,
  .service-title-section,
  .blog-title-section {
    font-size: 32px;
    line-height: 36px;
  }

  .about-counter-title {
    font-size: 42px;
    line-height: 46px;
  }

  .about-distribution {
    font-size: 18px;
    line-height: 26px;
  }

  .service-heading {
    font-size: 22px;
    line-height: 30px;
  }

  .service-heading,
  .service-subheading {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .service-heading {
    margin-bottom: 15px;
  }

  .service-subheading {
    margin-top: 15px;
  }

  .cta-content {
    font-size: 32px;
    line-height: 40px;
  }

  .nav-cta,
  .hero-btn,
  .about-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .counter {
    gap: 20px;
  }

  .clients img {
    width: 80px;
    height: 20px;
  }
}

/* Extra small mobile devices */
@media screen and (max-width: 320px) {
  .hero-text,
  .text-wrapper {
    font-size: 60px;
    line-height: 30px;
  }

  .hero-content {
    font-size: 16px;
    line-height: 24px;
  }

  .work-heading,
  .service-title-section,
  .blog-title-section {
    font-size: 28px;
    line-height: 32px;
  }

  .about-counter-title {
    font-size: 36px;
    line-height: 40px;
  }

  .about-distribution {
    font-size: 16px;
    line-height: 24px;
  }

  .service-heading {
    font-size: 20px;
    line-height: 28px;
  }

  .service-heading,
  .service-subheading {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .service-heading {
    margin-bottom: 15px;
  }

  .service-subheading {
    margin-top: 15px;
  }

  .cta-content {
    font-size: 28px;
    line-height: 36px;
  }

  .nav-cta,
  .hero-btn,
  .about-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .counter {
    gap: 15px;
  }

  .clients img {
    width: 70px;
    height: 18px;
  }
}

/* Landscape orientation for mobile devices */
@media screen and (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    padding: 60px 20px;
  }

  .hero-text,
  .text-wrapper {
    font-size: 90px;
    line-height: 45px;
  }

  .hero-content {
    font-size: 20px;
    line-height: 28px;
  }

  .about-section,
  .work-section,
  .service-section,
  .blog-section,
  .cta-section {
    padding: 60px 20px;
  }

  .work-heading,
  .service-title-section,
  .blog-title-section {
    font-size: 40px;
  }

  .about-counter-title {
    font-size: 40px;
  }

  .video-section {
    height: 300px;
  }

  .cta-content {
    font-size: 40px;
    line-height: 50px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .nav-links a,
  .nav-cta,
  .hero-btn,
  .about-btn,
  .work-body-heading,
  .service-grid,
  .service-grid-last,
  .pause-btn,
  .footer-menu-list a,
  .footer-link a {
    /* Increase touch targets for better mobile usability */
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links a,
  .footer-menu-list a,
  .footer-link a {
    padding: 12px 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .left-content img {
    animation: none !important;
    transition: none !important;
  }

  .logo img {
    animation: none !important;
  }
}
