.top-curve {
  width: 100%;
  height: calc(80vh - 60px);
  background-color: var(--beige);
  border-radius: 0 0 24% 24% / 12%;
  z-index: 0;
  opacity: 1;
  overflow: hidden;
  position: relative;
}

.main-banner-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  z-index: 0;
}

.overlay-banner-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  z-index: 1;
  animation: pulseEffect 3s infinite ease-in-out;
}

@keyframes pulseEffect {
  0% {
    transform: translate(-50%, -50%) rotate(-2deg) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) rotate(2deg) scale(1.05);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-2deg) scale(1);
  }
}

.travel-insurance-text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: '2Bold';
  font-size: 1.5rem;
  color: var(--dark-text);
  z-index: 14;
  text-align: center;
  width: 100%;
  padding: 0 20px;
  line-height: 1.2;
}

.pets-shipped {
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 80px;
  margin-bottom: 20px;
  padding: 0 20px;
  z-index: 13;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: '3Regular';
  font-size: 1rem;
}

.key-row {
  display: flex;
  gap: 6px;
}

.key {
  width: 20px;
  height: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: rgba(235, 132, 87, 0.85);
  border: 1px solid #000;
  border-radius: 6px;

  font-family: '2Bold';
  font-size: 1rem;
  line-height: 1;            /* 🔥 КЛЮЧЕВАЯ ПРАВКА */
  padding: 0;                /* 🔥 чтобы не влиял box-model */

  box-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  color: var(--dark-text);
}

.text-row {
  font-family: '2Regular';
  font-size: 1rem;
  text-align: right;
}
