  
.banner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  max-height: 250px;
  overflow: hidden;
  border-radius: 16px;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(80%);
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white !important;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  padding: 0 20px;
}

.banner-text h1 {
  font-size: 2.5rem !important;
  margin: 0;
}

.banner-text p {
  font-size: 1.2rem !important;
  margin-top: 10px;
}
@media (max-width: 800px) {
	.banner-text h1 {
		font-size: 2rem; 
	}
	
	.banner-text p {
		font-size: 1rem;
	}
}