/* Контейнер для картинки и иконки */
.icon-container {
  position: relative;
  display: inline-block;
}

/* Картинка */
.contract-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Ссылка с иконкой */
.icon-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-decoration: none;
}

/* Круглый фон иконки */
.icon-circle {
  width: 80px;
  height: 80px;
  background-color: #ffcc00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

/* Иконка */
.icon-overlay {
  font-size: 36px;
  color: #ffffff;
  transition: color 0.3s ease;
}

/* Эффект при наведении */
.icon-link:hover .icon-circle {
  background-color: #ffffff;
}

.icon-link:hover .icon-overlay {
  color: #ffcc00;
}
