.info-section {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  min-height: 500px;
}

.info-hero {
  width: 100%;
  height: 100%;
  border-radius: 65px;
  border: 1px solid rgba(225, 242, 255, 0.711);
  overflow: hidden;
  position: relative;
}

.info-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.177); /* внутренняя тень */
  pointer-events: none; /* не мешает клику/тексту */
}

.info-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.info-glass {
  position: absolute;
  top: 50px;      /* одинаковые отступы сверху */
  bottom: 50px;   /* снизу */
  left: 50px;     /* слева */
  right: 50px;    /* справа */
  background: #eaf7ff71;
  backdrop-filter: blur(14px) saturate(1.2);
  border-radius: 45px;
  padding: 30px;  /* одинаковый внутренний отступ */
  text-align: center;
  color: #013f6c;
  border: 1px solid rgba(255,255,255,0.26);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 5;
}

.info-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.info-text {
  font-size: 16px;
  line-height: 1.45;
  margin: 0;
  word-wrap: break-word;
}

