.card-wrapper {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 768px) {
  .card-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

.navigation-card {
  display: block;
  background-color: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  padding: 1.5rem;
  text-decoration: none;
  color: #030037;
  font-family: 'Noto Sans', sans-serif;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.navigation-card:hover {
  background-color: #c2c2c2;
  transform: translateY(-2px);
}

.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #030037;
}

.navigation-card p {
  margin: 0;
  color: #5a5a5a;
}

.with-selector select.country-selector {
  margin-top: 0.75rem;
  padding: 0.5rem;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 100%;
  font-family: 'Noto Sans', sans-serif;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background-color: #fff;
  padding: 2rem;
  max-width: 600px;
  width: 90%;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.modal-close {
  all: unset;
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.modal-close svg {
  stroke: #030037;
  transition: stroke 0.2s ease, transform 0.2s ease;
}

.modal-close:hover svg {
  stroke: #5a5a5a;
  transform: scale(1.1);
}

.modal-close:focus {
  outline: none;
  box-shadow: none;
}
}

.hidden {
  display: none;
}
<style>
  /* Normalize HubSpot embedded form styles ONLY */
  #hubspot-form-container form,
  #hubspot-form-container form * {
    font-family: 'Noto Sans', sans-serif !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    color: #030037 !important;
  }

  #hubspot-form-container input[type="submit"] {
    background-color: #030037 !important;
    border: none !important;
    color: #fff !important;
    font-weight: bold;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-size: 16px !important;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  #hubspot-form-container input[type="submit"]:hover {
    background-color: #5a5a5a !important;
  }
</style>