<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Home About Us Section */
.home-about__inner {
  display: flex;
  gap: 1.25rem; /* 20px to 1.25rem */
  align-items: flex-start;
  direction: rtl;
}

/* Left column: text and stats */
.home-about__info {
  flex: 1 1 50%;
  text-align: right;
}
/* Paragraph text */
.home-about__text {
  margin-bottom: 0.625rem; /* 10px to 0.625rem */
  text-align: right;
}

/* Stats */
.home-about__stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  align-items: flex-start;
  justify-content: flex-end;
}

.home-about__stat {
  flex: 1 1 auto;
  min-width: 120px;
  text-align: center;
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 5px;
  padding: 1.5rem 1rem;
  transition: all 0.3s ease;
}

.home-about__stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #010101;
}

.home-about__stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  display: inline-block;
  color: #010101;
  line-height: 1;
}

.home-about__stat-plus {
  font-size: 2rem;
  font-weight: 700;
  display: inline-block;
  color: #010101;
  margin-right: 0.125rem;
}

.home-about__stat-label {
  font-size: 0.875rem;
  color: #666;
  text-transform: uppercase;
  margin-top: 0.5rem;
  display: block;
  font-weight: 500;
}

/* Right column: heading */
.home-about__heading {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: right;
}

.home-about__title {
  font-size: 2.5rem;
  margin: 0;
  text-align: right;
}

/* Responsive adjustments */
@media (max-width: 48rem) { /* 768px to 48rem */
  .home-about__inner {
    flex-direction: column;
    align-items: center;
  }

  .home-about__info,
  .home-about__heading {
    flex: 1 1 100%;
    text-align: center;
  }

  .home-about__text {
    text-align: center;
  }

  .home-about__stats {
    justify-content: center;
    gap: 0.75rem;
  }

  .home-about__stat {
    min-width: 100px;
    padding: 1.25rem 0.75rem;
  }

  .home-about__stat-number {
    font-size: 2rem;
  }
  
  .home-about__stat-plus {
    font-size: 1.5rem;
  }

  .home-about__stat-label {
    font-size: 0.75rem;
  }

  .home-about__title {
    font-size: 2rem;
    margin-top: 0.625rem; /* 10px to 0.625rem */
    text-align: center;
  }
}

/* LTR Support */
html[dir="ltr"] .home-about__inner {
  direction: ltr;
  flex-direction: row-reverse;
}

html[dir="ltr"] .home-about__info {
  text-align: left;
}

html[dir="ltr"] .home-about__text {
  text-align: left;
}

html[dir="ltr"] .home-about__stats {
  justify-content: flex-start;
}

html[dir="ltr"] .home-about__stat-plus {
  margin-right: 0;
  margin-left: 0.125rem;
}

html[dir="ltr"] .home-about__heading {
  justify-content: flex-end;
  text-align: left;
}

html[dir="ltr"] .home-about__title {
  text-align: left;
}

/* Override LTR styles on mobile to center everything */
@media (max-width: 48rem) {
  html[dir="ltr"] .home-about__inner {
    flex-direction: column;
  }
  
  html[dir="ltr"] .home-about__info,
  html[dir="ltr"] .home-about__heading {
    text-align: center;
  }
  
  html[dir="ltr"] .home-about__text {
    text-align: center;
  }
  
  html[dir="ltr"] .home-about__stats {
    justify-content: center;
  }
  
  html[dir="ltr"] .home-about__title {
    text-align: center;
  }
}
</pre></body></html>