:root {
  --white: #ffffff;
  --black: #0B0B0B;
  --dark-gray: #31312B;
  --light-gray: #DEDED8;
  --very-light-gray: #EFEFF0;
  --bg-light: #F8F8F8;

  --primary: #CDDB00;
  --primary-dark: #666E00;
  --primary-mid: #AFBC00;

  --transition: 0.3s ease;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
  background: #0b0b0b;
  line-height: 1.5;
}

/* Fixed navbar positioning - changed from absolute to fixed */
/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  border-bottom: 1px solid rgba(173, 174, 167, 0.3);
  transition: transform 0.35s ease;
}

.navbar.hide {
  transform: translateY(-100%);
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links.left {
  margin-right: 20px;
}

.nav-links.right {
  margin-left: 20px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  padding-bottom: 2px;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s, border 0.3s;
}

.nav-links li a.active,
.nav-links li a:hover {
  color: #CDDB00;
  border-bottom: 2px solid #CDDB00;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 44px;
}

.logo img {
  height: 28px;
  width: auto;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff !important;
}

.logo-text .build {
  color: #fff !important;
}

.logo-text .nexus {
  color: #ffffff !important;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Added location-container wrapper styling for proper alignment */
.location-container {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.location {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 14px;
  padding: 4px 12px;
  padding-right: 24px;
  appearance: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.location option {
  background: #111;
  color: #fff;
}

/* Improved location-arrow positioning using absolute positioning */
/* Reduced right positioning to bring arrow closer to text */
.location-arrow {
  color: #fff;
  font-size: 14px;
  pointer-events: none;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.signin-btn {
  background: #181812;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s;
}

.signin-btn:hover {
  color: hsl(64, 100%, 43%);
}

/* Added hamburger menu styling for mobile */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 20;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* Responsive Navbar */
@media (max-width: 900px) {
  .navbar {
    padding: 0 20px;
    height: auto;
    flex-wrap: wrap;
  }

  .nav-links.left,
  .nav-links.right {
    display: none;
  }

  /* Keep Sign In button visible on mobile */
  .signin-btn {
    display: block;
  }

  /* Keep location dropdown visible on mobile */
  .location {
    display: block !important;
  }

  .hamburger {
    display: flex;
  }

  /* Mobile menu display when active */
  .nav-links.left.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: #181812;
    padding: 15px 0;
    z-index: 9;
    gap: 0;
  }

  .nav-links.left.mobile-active li {
    padding: 12px 20px;
  }

  .nav-links.left.mobile-active li a {
    display: block;
  }
}

/* Fixed hero section - added padding-top to prevent navbar overlap */
/* Hero Section */
.hero {
  height: 100vh;
  background: url("assets/images/bgimg.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* Increased top padding to account for fixed navbar overlay */
  padding: 140px 80px 80px 80px;
  margin-top: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(49, 49, 43, 1) 0%,
    rgba(49, 49, 43, 1) 52%,
    rgba(49, 49, 43, 0) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin-left: 50px;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
  line-height: 1.1;
}

.hero-content p {
  font-size: 19px;
  color: #ddd;
}

.overlay {
  display: none;
}

@media (max-width: 950px) {
  .hero {
    padding: 120px 40px 60px 40px;
  }

  .hero-content {
    margin-left: 20px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 100px 20px 40px 20px;
    min-height: 80vh;
    justify-content: center;
    align-items: center;
  }

  .hero-content {
    margin-left: 0;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .hero-content p {
    font-size: 14px;
  }
}

/* Fixed Services section - removed bad CSS and improved layout */
/* Services Section */
.services-section {
  position: relative;
  background: #fafaf3;
  padding: 60px 0;
  margin-top: 0;
  z-index: 1;
}

.grid-overlay {
  display: none;
}

.cards-container {
  display: flex;
  justify-content: center;
  gap: 28px;
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  flex-wrap: wrap;
  padding: 0 20px;
}

.service-card {
  background: #181812;
  color: #fff;
  border: 2px solid #CDDB00;
  border-radius: 18px;
  width: 300px;
  min-height: 310px;
  padding: 44px 28px 38px 28px;
  box-shadow: 0 8px 40px rgba(45, 48, 22, 0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}

.service-card:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 22px 44px rgba(205, 219, 0, 0.15);
}

.icon-space {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 41px;
  height: 41px;
  margin-bottom: 13px;
}

.service-icon {
  width: 41px;
  height: 41px;
  object-fit: contain;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.service-card p {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 18px;
}

.explore-link {
  color: #CDDB00;
  font-weight: bold;
  text-decoration: none;
  font-size: 15px;
  margin-top: auto;
  transition: color 0.2s;
}

.explore-link span {
  margin-left: 7px;
}

.explore-link:hover {
  text-decoration: underline;
  color: #fff;
}

@media (max-width: 950px) {
  .cards-container {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  .service-card {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 700px) {
  .service-card {
    width: 100%;
    min-height: auto;
    padding: 24px 16px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 13px;
  }
}

/* Fixed Getting Started section - improved layout and positioning */
/* Getting Started/Profile Area */
.cta-profile-slide {
  width: 100%;
  background: #fafaf3 url("assets/icons/Pattern1.svg") repeat;
  background-size: 280px 280px;
  padding: 64px 20px 72px 20px;
  display: flex;
  justify-content: center;
  position: relative;
}

.cta-profile-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 56px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  width: 100%;
}

.profile-area {
  position: relative;
  width: 340px;
  height: 330px;
  flex-shrink: 0;
}

.profile-card {
  background: #fff;
  box-shadow: 0 6px 24px rgba(45, 48, 22, 0.13);
  width: 296px;
  height: 329px;
  border-radius: 24px;
  position: absolute;
  overflow: hidden;
}

.profile-card.main {
  left: 0;
  top: 30px;
  z-index: 1;
}

.profile-card.behind {
  top: -42px;
  right: -80px;
  opacity: 0.7;
  filter: blur(0.6px);
  z-index: 0;
}

.profile-img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.cta-text {
  max-width: 422px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.cta-text h2 {
  font-size: 2em;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.18;
  color: #181812;
}

.cta-text p {
  color: #888;
  margin-bottom: 22px;
  font-size: 1.13em;
}

.cta-btn {
  background: #CDDB00;
  color: #181812;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.08em;
  letter-spacing: 0.03em;
  display: inline-block;
  box-shadow: 0 2px 9px rgba(205, 219, 0, 0.11);
  border: none;
  transition: background 0.2s;
  cursor: pointer;
  width: fit-content;
}

.cta-btn:hover {
  background: #b8c800;
}

@media (max-width: 950px) {
  .cta-profile-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 38px;
  }

  .profile-area {
    width: 100%;
    max-width: 340px;
  }

  .cta-text {
    max-width: 100%;
    text-align: center;
  }

  .profile-card.behind {
    display: none;
  }
}

@media (max-width: 700px) {
  .cta-profile-slide {
    padding: 40px 15px;
  }

  .cta-profile-wrapper {
    gap: 24px;
  }

  .profile-area {
    width: 100%;
    height: 270px;
  }

  .profile-card {
    width: 100%;
    height: 270px;
    position: static;
  }

  .profile-card.main,
  .profile-card.behind {
    position: static;
  }

  .cta-text h2 {
    font-size: 1.4em;
  }

  .cta-text p {
    font-size: 0.95em;
  }
}

/* Fixed Steps/Experience section - improved responsive layout */
.steps-experience-section {
  position: relative;
  padding: 70px 20px;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
}

.steps-experience-bg {
  position: absolute;
  top: -40vh;
  z-index: -1;
  left: 25px;
  opacity: 0.1;
  pointer-events: none;
}

.steps-experience-content {
  position: relative;
  z-index: 1;
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  gap: 44px;
  align-items: flex-start;
  justify-content: space-between;
}

.steps-column {
  width: 48%;
}

.steps-column h2 {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 17px;
  color: #181812;
}

.desc {
  color: #888;
  margin-bottom: 35px;
  font-size: 1.07rem;
}

.easy-step {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 36px;
  border-bottom: 1px solid #ececec;
  padding-bottom: 18px;
}

.step-desc {
  position: relative;
  top: -10px;     /* <-- MAGIC FIX */
}

.step-badge {
  font-weight: bold;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.22em;
  margin-right: 6px;
  flex-shrink: 0;
}

.step-yellow {
  background: #CDDB00;
  color: #181812;
}

.step-green {
  background: #CDDB00;
  color: #181812;
}

.step-black {
  background: #181812;
  color: #fff;
}

.step-desc {
  color: #888;
  font-size: 0.99em;
}

.experience-column {
  width: 48%;
}

.experience-column h2 {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 17px;
  color: #181812;
}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
  margin-top: 18px;
}

.exp-card {
  background: #f7f7f7;
  border-radius: 16px;
  box-shadow: 0 2px 13px rgba(37, 37, 37, 0.06);
  padding: 34px 22px 25px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.exp-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #181812;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.exp-icon img {
  width: 24px;
  height: 24px;
}

.exp-card b {
  color: #181812;
  font-size: 1.16em;
  margin-bottom: 7px;
}

.exp-desc {
  font-size: 0.98em;
  color: #888;
}

@media (max-width: 900px) {
  .steps-experience-content {
    flex-direction: column;
    gap: 32px;
  }

  .steps-column,
  .experience-column {
    width: 100%;
  }

  .exp-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .steps-experience-section {
    padding: 40px 15px;
  }

  .steps-column h2,
  .experience-column h2 {
    font-size: 1.4rem;
  }

  .exp-grid {
    grid-template-columns: 1fr;
  }

  .easy-step {
    gap: 10px;
  }
}

/* Fixed Properties section - removed unnecessary row spans and fixed grid layout */
.properties-section {
  width: 100%;
  background: #f8f8f8;
  padding: 38px 20px 20px 20px;
  box-sizing: border-box;
}

.properties-header {
  max-width: 900px;
  margin: 0 auto 22px auto;
  text-align: center;
}

.properties-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #181812;
  margin-bottom: 6px;
}

.properties-header p {
  font-size: 1rem;
  color: #888;
  margin: 0;
}

.properties-viewall {
  width: 100%;
  text-align: center;
  margin: 18px 0 2px 0;
  font-size: 1em;
}

.properties-viewall a {
  color: #181812;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
  font-size: 1em;
}

.properties-viewall a:hover {
  color: #CDDB00;
}

/* Fixed properties grid - removed improper row spans */
.properties-grid {
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 18px;
  margin: 0 auto 18px auto;
  padding: 0 10px;
}

.property-card {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 18px rgba(70, 70, 70, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s;
}

.property-card:hover {
  box-shadow: 0 7px 18px rgba(70, 70, 70, 0.12);
}

.property-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
  background: #ddd;
}

.property-info {
  padding: 14px 22px 8px 22px;
  width: 100%;
}

.property-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: #181812;
  margin-bottom: 1px;
}

.property-location {
  font-size: 0.98rem;
  color: #979797;
}

.property-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 13px;
}

.property-tags span {
  background: #f3f7d4;
  border-radius: 6px;
  font-size: 0.94em;
  color: #727272;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px 2px 7px;
  margin-top: 4px;
}

.property-tags img {
  width: 16px;
  height: 16px;
}

@media (max-width: 850px) {
  .properties-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .property-img {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .properties-section {
    padding: 25px 15px 15px 15px;
  }

  .properties-header h2 {
    font-size: 1.4rem;
  }

  .property-img {
    height: 160px;
  }

  .property-label {
    font-size: 0.95rem;
  }

  .property-tags span {
    font-size: 0.85em;
    padding: 2px 6px 1px 5px;
  }
}

/* Fixed Testimonials section - improved carousel responsiveness */
/* Testimonials Section */
.testimonials-section {
  background: #fff;
  padding: 60px 20px 40px 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #181812;
}

.section-subtitle {
  color: #888;
  margin-bottom: 30px;
  font-size: 1rem;
}

.testimonial-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.carousel-arrow {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.carousel-arrow img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.testimonial-list {
  display: flex;
  gap: 20px;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  width: 340px;
  min-height: 250px;
  padding: 26px 22px 20px 22px;
  position: relative;
  text-align: left;
  transition: box-shadow 0.2s;
}

.testimonial-card .stars {
  color: #FFB400;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.testimonial-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #181812;
}

.testimonial-card p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 16px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-info .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info .user-name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2px;
  color: #181812;
}

.user-info .user-role {
  font-size: 0.91rem;
  color: #888;
}

.testimonial-card .annotation {
  position: absolute;
  right: 14px;
  bottom: 18px;
  width: 30px;
  opacity: 0.4;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.dot {
  display: inline-block;
  width: 15px;
  height: 14px;
  border-radius: 50%;
  background-color: #252525;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
}

.dot.active {
  width: 40px;
  height: 14px;
  border-radius: 10px;
  background-color: #CDDB00;
  opacity: 1;
}

@media (max-width: 900px) {
  .testimonial-carousel {
    flex-direction: column;
    gap: 20px;
  }

  .testimonial-list {
    flex-direction: column;
    gap: 20px;
  }

  .testimonial-card {
    width: 100%;
    max-width: 340px;
  }
}

@media (max-width: 600px) {
  .testimonials-section {
    padding: 30px 15px 20px 15px;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .testimonial-card {
    min-height: auto;
    padding: 16px 12px;
  }

  .testimonial-card h3 {
    font-size: 1rem;
  }

  .testimonial-card p {
    font-size: 0.9rem;
  }
}

/* Fixed Join section styling and button */
.join-section {
  padding: 60px 20px 50px 20px;
  background: #CDDB00;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.join-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.6em;
  color: #111;
}

.join-section .highlight {
  color: #101010;
  font-weight: 700;
}

.join-section .join-sub {
  color: #333;
  margin-bottom: 26px;
  font-weight: 500;
}

.join-btn {
  background: #101010;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.09rem;
  font-weight: 500;
  padding: 12px 28px;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.join-btn:hover {
  background: #232323;
}

.signup-arrow {
  width: 25px;
  height: 25px;
  vertical-align: middle;
}

@media (max-width: 600px) {
  .join-section {
    padding: 40px 15px 35px 15px;
  }

  .join-section h2 {
    font-size: 1.6rem;
  }

  .join-btn {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}

/* Fixed Footer section - improved responsive layout */
/* Footer */
.site-footer {
  background: #181818;
  color: #fff;
  padding: 42px 20px 0 20px;
  width: 100%;
  box-sizing: border-sizing;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  flex: 1.1;
  min-width: 230px;
}

.brand-badge {
  background: #CDDB00;
  color: #181818;
  font-weight: bold;
  display: inline-block;
  padding: 5px 19px;
  border-radius: 8px;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer-brand p {
  margin-bottom: 18px;
  font-size: 0.98rem;
  line-height: 1.5;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  display: inline-block;
  width: 28px;
  height: 28px;
  transition: transform 0.2s;
}

.footer-socials a:hover {
  transform: scale(1.1);
}

.footer-socials img {
  width: 100%;
  height: 100%;
}

.footer-links {
  flex: 2.5;
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  min-width: 250px;
}

.footer-links div {
  min-width: 120px;
}

.footer-links h4 {
  margin: 0 0 13px 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-links a {
  display: block;
  color: #ddd;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 0.97rem;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: #CDDB00;
}

.footer-copyright {
  border-top: 1px solid #282828;
  padding-top: 16px;
  margin-top: 36px;
  text-align: center;
  font-size: 0.98rem;
  color: #aaa;
}

/* Responsive Footer */
@media (max-width: 980px) {
  .footer-content {
    flex-direction: column;
    gap: 24px;
  }

  .footer-links {
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 25px 15px 0 15px;
  }

  .footer-content {
    gap: 20px;
  }

  .footer-links {
    gap: 20px;
  }

  .footer-links div {
    min-width: 100px;
  }

  .footer-links h4 {
    font-size: 1rem;
  }

  .footer-links a {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
}
