﻿.button-link_link__eTf8F {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  background-color: rgba(24, 100, 171, 0.5);
  color: #ffffff;
  text-decoration: none;
  font-family: 'Google Sans', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.button-link_link__eTf8F:hover {
  background-color: #1557b0;
  transform: translateY(-2px);
}

.hero_cta__osRfk {
  margin-top: 16px;
  padding: 14px 28px;
  font-size: 18px;
}

.hero_fadeIn__4Ffqh {
  animation: fadeIn 1s ease-in-out;
}

.button-link_white__cMMvJ {
  background-color: #ffffff;
  color: #1a73e8;
  border: 1px solid #1a73e8;
}

.button-link_white__cMMvJ:hover {
  background-color: #f8f9fa;
  color: #1557b0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}