.contact-section {
  position: relative;
  background: url("../img/kurumsal/sevinc.avif") center/cover no-repeat;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  font-weight: bold;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(54, 34, 0, 0.4);
}

.contact-content {
  position: relative;
  z-index: 10;
  padding: 0 20px;
}

/* Mail Adresi Alanı Stilleri */
.contact-email {
  margin-top: 1rem;
}

.contact-email h3 {
  font-size: 1.125rem;
  /* text-lg */
  font-weight: bold;
  color: #a68e3f;
}

.contact-email p {
  color: #4b5563;
  /* text-gray-700 */
  font-size: 1rem;
}

.contact-email a {
  color: #a68e3f;
  text-decoration: none;
  transition: text-decoration 0.3s ease;
}

.contact-email a:hover {
  text-decoration: underline;
}

/* Responsive Tasarım */
@media (max-width: 900px) {
  .contact-section {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .contact-email h3 {
    font-size: 1rem;
  }

  .contact-email p {
    font-size: 0.875rem;
  }
}