<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Home Branches CTA Section */
.home-branches-cta {
  position: relative;
  background-color: #010101;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 25rem;
  display: flex;
  align-items: center;
}

.home-branches-cta__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(315deg, rgba(1, 1, 1, 0.7) 0%, rgba(1, 1, 1, 0.4) 100%);
  z-index: 1;
}

.home-branches-cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.home-branches-cta__content {
  color: #fff;
}

.home-branches-cta__subtitle {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
}

.home-branches-cta__title {
  font-size: 2.75rem;
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.home-branches-cta__description {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 2rem;
  opacity: 0.95;
}

.home-branches-cta__actions {
  display: flex;
  gap: 1rem;
}

.home-branches-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #fff;
  color: #010101;
  padding: 0.875rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.home-branches-cta__button:hover {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

.home-branches-cta__button svg {
  width: 1.25rem;
  height: 1.25rem;
}

.home-branches-cta__stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.home-branches-cta__stat {
  text-align: center;
  color: #fff;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 8rem;
}

.home-branches-cta__stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.home-branches-cta__stat-label {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 64rem) {
  .home-branches-cta__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .home-branches-cta__stats {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
}

@media (max-width: 48rem) {
  .home-branches-cta {
    min-height: 20rem;
  }
  
  .home-branches-cta__title {
    font-size: 2rem;
  }
  
  .home-branches-cta__description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .home-branches-cta__actions {
    justify-content: center;
  }
  
  .home-branches-cta__button {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
  
  .home-branches-cta__stats {
    gap: 1rem;
  }
  
  .home-branches-cta__stat {
    padding: 1rem;
    min-width: 6rem;
  }
  
  .home-branches-cta__stat-number {
    font-size: 2rem;
  }
  
  .home-branches-cta__stat-label {
    font-size: 0.875rem;
  }
}

/* LTR Support */
html[dir="ltr"] .home-branches-cta__content {
  text-align: left;
}

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

@media (max-width: 64rem) {
  html[dir="ltr"] .home-branches-cta__content {
    text-align: center;
  }
  
  html[dir="ltr"] .home-branches-cta__actions {
    justify-content: center;
  }
}

/* RTL Support */
html[dir="rtl"] .home-branches-cta__button svg {
  transform: scaleX(-1);
}</pre></body></html>