.banner-section {
  padding: 60px 120px;
  background: #0d0d0d;
}

.banner-card {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  border-radius: 30px;
  background: linear-gradient(220.45deg, #ed1c24 60.418%, #fcec21 101.82%);
  display: flex;
  align-items: center;
}

.banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 60px 0 60px 80px;
}

.banner-title {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
}

.banner-subtitle {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  max-width: 480px;
}

.btn-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #f9671a;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 100px;
  padding: 16px 40px;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}

.btn-banner:hover {
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .banner-section {
    padding: 60px 40px;
  }

  .banner-content {
    padding: 48px 48px;
  }

  .banner-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .banner-card {
    flex-direction: column;
    align-items: center !important;
  }
  .banner-section {
    padding: 40px 16px;
  }

  .banner-content {
    padding: 48px 32px;
    flex-direction: column;
    min-height: auto;
    align-items: center;
    text-align: center;
  }

  .banner-content {
    width: 100%;
    position: relative;
    z-index: 2;
  }

  .banner-title {
    font-size: 28px;
  }

  .banner-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 1600px) {
  .banner-card {
    align-items: flex-end;
  }
}
