* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

.container {
  width: 80%;
  margin: 0 auto;
}

header {
  background: #333;
  color: white;
  padding: 20px 0;
}

header .logo {
  font-size: 2.5em;
  font-weight: bold;
}

header nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
}

header nav ul li {
  margin-left: 20px;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.1em;
}

header nav ul li a:hover {
  color: #ff9800;
}

section {
  padding: 40px 0;
}

section h2 {
  font-size: 2em;
  margin-bottom: 20px;
  text-align: center;
}

.about p {
  text-align: center;
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
}

.projects .project-card {
  background: #fff;
  padding: 20px;
  margin: 20px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.projects .project-card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.projects .project-card p {
  font-size: 1em;
  margin-bottom: 10px;
}

.projects .project-card .btn {
  background-color: #ff9800;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.projects .project-card .btn:hover {
  background-color: #e68900;
}

.project-description {
  padding: 40px 0;
  text-align: center;
}

.project-description h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.project-description p {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
}

.contact ul {
  list-style: none;
  font-size: 1.1em;
  text-align: center;
}

.contact ul li {
  margin: 10px 0;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 10px 0;
}

footer p {
  font-size: 1em;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #222;
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  z-index: 1000;
}
#cookie-banner button {
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin: 10px 0;
  cursor: pointer;
}
#cookie-banner a {
  color: #f1f1f1;
  text-decoration: underline;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.contact-list li {
  margin-bottom: 10px;
}

.contact-list a {
  color: #333; /* LinkedIn-Blau */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.contact-list a:hover {
  color: #ff9800;
}