/* ===============================
   MK Entsorgung – Kontaktseite
   =============================== */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

/* Banner oben */
.banner-section {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('images/entruempelung.png')
              center/cover no-repeat;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  position: relative;
}

.banner-section h1 {
  font-weight: 700;
  font-size: 2.8rem;
}

/* Kontaktbereich */
.contact-section {
  padding: 80px 0;
}

.contact-section h2 {
  font-weight: 700;
  color: #222;
  border-left: 5px solid #444;
  padding-left: 15px;
  margin-bottom: 25px;
}

.contact-info {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.contact-info:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.contact-info i {
  color: #444;
  margin-right: 10px;
}

.custom-form {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.custom-form input,
.custom-form textarea,
.custom-form select {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 12px;
  width: 100%;
  margin-bottom: 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.custom-form input:focus,
.custom-form textarea:focus,
.custom-form select:focus {
  border-color: #444;
  box-shadow: 0 0 0 3px rgba(68,68,68,0.1);
  outline: none;
}

.custom-form button {
  background-color: #444;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
}

.custom-form button:hover {
  background-color: #000;
  transform: translateY(-2px);
}

footer {
  background-color: #333;
  color: #fff;
  padding: 30px 0;
  text-align: center;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .contact-info {
    margin-bottom: 30px;
  }
}
