#kontakt {
  background: #fdfbfb;
  color: #333; 
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.kontakt-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.branding {
  text-align: center;
}

.branding h1 {
  font-size: 1.8em;
  color: #7848f4; 
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  border: 1px solid #7848f4; 
  border-radius: 50%;
  color: #7848f4;
  transition: background 0.3s, color 0.3s;
}

.social-icons a:hover {
  background: #7848f4;
  color: #fff;
}

.contact-details {
  text-align: center;
}

.contact-details h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #333; 
}

.contact-details p {
  margin: 5px 0;
}

.contact-details p a {
  color: #0055aa; 
  text-decoration: none;
}

.contact-details p a:hover {
  text-decoration: underline;
}

.sitemap {
  text-align: center;
}

.sitemap h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #333;
}

.sitemap ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap li {
  margin-bottom: 10px;
}

.sitemap li a {
  color: #0055aa;
  text-decoration: none;
}

.sitemap li a:hover {
  text-decoration: underline;
}

footer {
  margin-top: 30px;
  text-align: center;
  font-size: 0.9em;
  color: #777;
  border-top: 1px solid #ddd;
  padding: 15px 0;
}
.branding img.logo {
  max-width: 150px; 
  height: auto; 
  display: block;
  margin: 0 auto 15px; 
}