/* Banner Section Styles */
.banner-section {
  position: relative;
  padding: 60px 0;
  background-color: #000000;
  overflow: hidden;
}

.banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.banner-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-container {
  position: relative;
  z-index: 10;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: center;
  padding: 0 30px;
}

.banner-content {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.banner-title {
  font-size: 42px;
  line-height: 1.4;
  color: #ffffff;
  max-width: 480px;
}

.banner-description {
  font-size: 16px;
  line-height: 1.75;
  color: #ffffff;
  max-width: 480px;
}

.banner-button {
  display: inline-block;
  padding: 24px;
  background: linear-gradient(to right, #505050, #202020);
  border: 1px solid #ffffff;
  border-radius: 14px;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  width: fit-content;
}

.banner-button:hover {
  opacity: 0.8;
}

.banner-images {
  display: flex;
  gap: 40px;
}

.banner-image {
  border-radius: 10px;
  overflow: hidden;
}

.banner-image img {
  width: 100%;
  max-width: 600px;
}

/* Mobile Styles */
@media (max-width: 1023px) {
  .banner-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }

  .banner-content {
    text-align: center;
    align-items: center;
  }

  .banner-images {
    justify-content: center;
  }

  .banner-image {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .banner-section {
    padding: 100px 0;
  }

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

  .banner-images {
    flex-direction: column;
    align-items: center;
  }
}
