body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f0f2f4;
    color: #222;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    min-height: 100vh;
    overflow: hidden;
}

/* Mobile: Scroll aktivieren */
@media (max-width: 768px) {
    body {
        overflow: auto; 
    }
}

.container {
    max-width: 560px;
    width: 100%;
    background: #ffffff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    text-align: center;
}

.logo img {
    width: 145px;
    margin-bottom: 10px;
}

h1 {
    font-size: 22px;
    margin: 5px 0 8px 0;
}

p {
    margin: 0 0 14px 0;
    line-height: 1.4;
    color: #555;
    font-size: 14px;
}

section {
    margin-top: 18px;
}

section strong {
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 700;
    display: block;
}

.subblock {
    margin: 6px 0 14px 0;
    line-height: 1.45;
    font-size: 14px;
}

.subblock span {
    font-size: 14px;
}

/* --- Kontaktboxen nebeneinander --- */
.contact-grid {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 10px;
}

.contact-grid .subblock {
    flex: 1;
    background: #f7f7f7;
    padding: 10px 12px;
    border-radius: 8px;
    text-align: left;
}

.contact-grid span {
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

/* Mobile-Version: untereinander */
@media (max-width: 480px) {
    .contact-grid {
        flex-direction: column;
    }
}

hr {
    border: 0;
    border-top: 1px solid #e2e2e2;
    margin: 18px 0;
}

.social {
    display: flex;
    justify-content: center;
    gap: 10px;               
    margin-top: 15px;
}

.social img {
    width: 26px;
    opacity: 0.85;
    transition: 0.2s;
    margin: 0; 
}

.social img:hover {
    opacity: 1;
}

footer {
    margin-top: 18px;
    font-size: 13px;
}

footer a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
}

footer a:hover {
    text-decoration: underline;
}

footer p {
    margin-top: 6px;
    font-size: 12px;
}

.map-placeholder {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 220;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-align: center;
    font-family: sans-serif;
    color: #333;
  }
  .map-placeholder span {
    background: rgba(255,255,255,0.9);
    padding: 10px 20px;
    border-radius: 10px;
  }
  iframe {
    width: 100%;
    height: 220px;
    border: 0;
  }

  .btn-mieten {
    display: inline-block;
    padding: 12px 24px;
    background-color: #8C0505; /* Farbe anpassen */
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.btn-mieten:hover {
    background-color: #8C0505;
}