.section-banner {
  padding: 80px 0 0 0;
  background: #ffffff;
}

.banner-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.banner-image {
  flex-shrink: 0;
  width: 400px;
}

.banner-image img {
  width: 100%;
  height: auto;
}

.banner-content {
  max-width: 574px;
}

.banner-content h2 {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #0a005e;
}

.banner-content p {
  font-size: 16px;
  color: #0a005e;
  margin-bottom: 32px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .banner-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .banner-image {
    width: 300px;
    order: 2;
  }

  .banner-content h2 {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .banner-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .banner-content h2 {
    font-size: 28px;
  }
}
