/* Banner Alanı Stilleri */
.contact-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
  margin-bottom: 60px;
}

.banner-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(189, 200, 209, 0.7) 0%,
    rgba(0, 52, 102, 0.8) 100%
  );
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 90%;
  max-width: 800px;
}

.banner-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-content p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .contact-banner {
    height: 300px;
    margin-bottom: 40px;
  }
  
  .banner-content h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  
  .banner-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-banner {
    height: 250px;
    margin-bottom: 30px;
  }
  
  .banner-content h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .banner-content p {
    font-size: 0.9rem;
  }
}