/* Banner Section Styles */
.banner-section {
  padding: 150px 0 0 0;
  background: #f8f7ec;
}

.banner-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 72px;
  background: #1f1f1f;
  height: 270px;
  clip-path: polygon(
    0 0,
    calc(100% - 107px) 0,
    100% 101.31px,
    100% 100%,
    0 100%
  );
}

.banner-image {
  flex-shrink: 0;
  width: 405px;
  height: 270px;
  overflow: hidden;
  margin-left: 0;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: #ffffff;
  padding-right: 0;
}

.banner-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 80%;
}

.banner-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  color: #ffffff;
  margin: 0;
}

.banner-description {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  margin: 0;
  max-width: 355px;
}

.banner-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.banner-actions .btn {
  height: 48px;
  padding: 16px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.banner-actions .btn-primary {
  background: #ffcc29;
  color: #1f1f1f;
  border: none;
}

.banner-actions .btn-primary:hover {
  background: #ffd84d;
}

.banner-actions .btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.banner-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .banner-container {
    max-width: 960px;
    gap: 40px;
    clip-path: polygon(0 0, calc(100% - 90px) 0, 100% 85px, 100% 100%, 0 100%);
  }

  .banner-image {
    width: 350px;
  }
}

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

  .banner-container {
    flex-direction: column;
    height: auto;
    padding: 0;
    gap: 0;
    max-width: 100%;
    margin: 0;
    clip-path: polygon(
      0 0,
      calc(100% - 82.17px) 0,
      100% 78px,
      100% 100%,
      0 100%
    );
  }

  .banner-image {
    width: 100%;
    height: auto;
    aspect-ratio: 405 / 270;
    margin-left: 0;
  }

  .banner-content {
    padding: 32px 16px;
    gap: 32px;
    width: 100%;
  }

  .banner-text {
    width: 100%;
  }

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

  .banner-description {
    max-width: 100%;
  }

  .banner-actions {
    width: 100%;
    gap: 16px;
  }

  .banner-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .banner-section {
    padding: 150px 16px 0 16px;
  }

  .banner-container {
    max-width: 100%;
  }
}
