/* Allgemeines Layout */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f2f2f2;
  color: #333;
}

/* Header */
header {
  background-color: #1a1a1a;
  color: white;
  padding: 1.5rem;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2rem;
}

/* Navigation */
nav {
  margin-top: 1rem;
}

nav a {
  color: #ffcc00;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Hauptbereich */
main {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Überschriften */
h2 {
  color: #1a1a1a;
  border-bottom: 2px solid #ffcc00;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

h3 {
  color: #555;
  margin-top: 2rem;
}

/* Footer */
footer {
  background-color: #ddd;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}

/* Hero-Bereich mit Bild und Text */
.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.hero-text {
  flex: 1 1 400px;
  font-size: 1.1rem;
}

.hero-image {
  flex: 1 1 400px;
}

.hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
form {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

input, textarea {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  box-sizing: border-box;
}

button {
  background-color: #1a1a1a;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  background-color: #333;
}
select {
  font-size: 1rem;
  padding: 0.6rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: white;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
}
select {
  font-size: 1rem;
  padding: 0.6rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: white;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
}
.service-box {
  background-color: #f9f9f9;
  border-left: 6px solid #ffcc00;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

.service-box h3 {
  margin-top: 0;
  color: #333;
}
.language-switcher button {
  font-size: 28px;
  margin-left: 8px;
  background-color: #444;      
  border: none;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.language-switcher button:hover {
  background-color: #222;      
}