* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #ffffff;
}

.promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6%;
  gap: 50px;
}

.promo-content {
  max-width: 600px;
}

.promo-intro {
  color: #1a3db8;
  font-size: 20px;
  margin-bottom: 25px;
}

.promo-content h1 {
  color: #0a1f8f;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.promo-content h1 span {
  font-weight: 400;
}

.promo-content h2 {
  color: #0a1f8f;
  font-size: 32px;
  font-weight: 400;
  margin: 15px 0 30px;
}

.promo-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.promo-logos img {
  height: 40px;
  object-fit: contain;
}

.btn {
  display: inline-block;
  background: #8c1234;
  color: #fff;
  text-decoration: none;
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #BFA184;
}

.promo-image img {
  max-width: 420px;
  border-radius: 18px;
}

/* 📱 Responsive */
@media (max-width: 900px) {
  .promo {
    flex-direction: column;
    padding: 40px 25px;
    text-align: center;
  }

  .promo-logos {
    justify-content: center;
  }

  .promo-image img {
    max-width: 100%;
  }
}
