.multi-banner {
  width: 100%;
  background: linear-gradient(135deg, #FEC502 0%, #fffbe6 100%);
  padding: 20px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  overflow: hidden;
}



.banner-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}



.top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}


.right-image img {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
  display: block;
}

.bottom-text {
  margin-top: 20px;
  margin-bottom: 6px;
  color: #444;
  line-height: 1.4;
  font-family: 'El Messiri', sans-serif;
}

.image-circle {
  margin-right: 10px;
  margin-left: auto;
  width: 400px;
  height: 350px;
  background-color: white;
  border-radius: 50%;
  padding: 25px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.widget-plus-button {
  display: flex;
  align-items: center;
  gap: 10px;
}

.triple-box-button {
  white-space: nowrap;
}

.menu-item.active a {
  font-weight: bold;
  color: #fec502; /* твой цвет */
}

@media (max-width: 768px) {
  .widget-plus-button {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    text-align: left;
  }

  .triple-box-button {
    white-space: normal;
  }

  .right-image img {
    max-height: 200px;
    margin-top: 10px;
    display: none;
  }

  .image-circle {
    display: none;
  }
}

