 <style>
.contact-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 40px;
    margin-bottom: 40px;
}

.contact-container h1 {
    text-align: center;
/*    color: #2c3e50;  */
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 2.8em;
}

.kontaktformular {
  max-width: 600px;
  margin: auto;
  background-color: #f2f2f2;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-family: "Segoe UI", sans-serif;
}

.kontaktformular label {
  display: block;
  margin-bottom: 6px;
  color: #333;
  font-weight: 500;
}

.kontaktformular input[type="text"],
.kontaktformular input[type="email"],
.kontaktformular textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  font-size: 1rem;
}

.btn-primary {
  background-color: #333333;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #555555;
}

.bewertung-hinweis {
  margin-top: 30px;
  text-align: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.bewertung-hinweis p {
  margin-bottom: 10px;
  color: #333;
  font-size: 1rem;
}

.bewerten-button {
  background-color: #333333;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.bewerten-button:hover {
  background-color: #555555;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.1em;
    color: #555;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Formular breiter, Info-Bereich schmaler */
    gap: 40px;
    align-items: flex-start; /* Elemente am oberen Rand ausrichten */
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Auf kleinen Bildschirmen untereinander */
    }
}

/* Formular-Bereich */
.contact-form-section {
    background-color: #ffffff;
    color: #333;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.contact-form-section h2 {
    color: #333;
    margin-bottom: 25px;
    font-size: 1.6em;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    color: #333;
    transition: border-color 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}

.contact-form textarea {
    resize: vertical; /* Nur vertikales Resizing erlauben */
    min-height: 120px;
}

.contact-form .captcha-group label {
    display: inline-block; /* Für Captcha, damit die Frage neben dem Feld ist */
    margin-right: 15px;
}
.contact-form .captcha-group input {
    width: auto; /* Automatische Breite für das Captcha-Feld */
    max-width: 100px; /* Begrenzte Breite für das Captcha-Feld */
    display: inline-block;
}
.contact-form .captcha-group small {
    display: block;
    margin-top: 5px;
    color: #777;
    font-size: 0.85em;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Kontakt-Info-Bereich */
.contact-info-section {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
}

.contact-info-section h2 {
/*    color: #2c3e50;  */
    color: #333;
    margin-bottom: 20px;
    font-size: 1.8em;
    text-align: center;
}

.contact-info-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #444;
}

.contact-info-section p.phone-number {
    font-size: 1.2em;
    font-weight: 400rem;
/*    color: #3498db; */
    color: #333;
}

.contact-info-section p.phone-number i,
.contact-info-section p i {
    margin-right: 10px;
/*    color: #2c3e50; */
    color: #333;
    font-size: 1.1em;
}

.contact-info-section a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-section a:hover {
    text-decoration: underline;
    color: #2980b9;
}

.opening-hours-title {
    margin-top: 30px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-size: 1.4em;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

/* Nachrichten für Formularstatus */
.form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

.form-message.success {
    background-color: #e6ffe6; /* Light green */
    color: #28a745; /* Dark green */
    border: 1px solid #28a745;
}

.form-message.error {
    background-color: #ffe6e6; /* Light red */
    color: #dc3545; /* Dark red */
    border: 1px solid #dc3545;
}
  .image-container {
      position: relative;
      width: 100%;
      height: 320px;
      overflow: hidden;
    }

    .image-container img {
      width: 100%;
      height:320px;
      object-fit: cover;
    }

    .headline {
      position: absolute;
      top: 50%;
      left: 70px;
      transform: translateY(-50%);
      color: white;
      font-size: 3.3rem;
      font-weight: 400;
/*      text-shadow: 1px 1px 4px rgba(0,0,0,0.7); */
    }
    
 </style>   
    