.english-banner {
  background: linear-gradient(135deg, #fef6e4, #fff3d9);
  border-radius: 20px;
  padding: 40px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin: 40px auto;
  max-width: 1200px;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.text-block {
  max-width: 500px;
}

.text-block h1 {
  font-size: 2.8rem;
  color: #ff6b00;
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: 800;
}

.subtitle {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 25px;
}

.cta-btn {
  background-color: #ff8c00;
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-btn:hover {
  background-color: #ff6b00;
  transform: scale(1.05);
}

.image-block img {
  width: 320px;
  max-width: 100%;
  animation: float 3s ease-in-out infinite;
}

/* Лёгкая анимация "покачивания" */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Адаптивность */
@media (max-width: 768px) {
  .english-banner {
    padding: 30px 20px;
    margin: 10px auto;
    max-width: 380px;
  }

  .text-block h1 {
    font-size: 2rem;
    text-align: center;
  }

  .subtitle {
    text-align: center;
  }

  .cta-btn {
    display: block;
    margin: 0 auto;
  }

  .banner-content {
    flex-direction: column;
    text-align: center;
  }
}