/* Grundlegende Stile für den gesamten Körper */
body {
    font-family: Arial, sans-serif;
    color: #611E27;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* Kopfzeilenstil */
header {
    background-color: #611E27;
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

/* Hauptbereichsstil */
main {
    padding: 20px;
}

/* Überschriftenstil */
h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

/* Inhaltsstil */
.content {
    margin-bottom: 20px;
}

/* Preis- und Servicestile */
.pricing, .services {
    margin-left: 20px;
}

/* Listenelementstil */
.services li {
    margin-bottom: 10px;
}

/* Linkstil */
a {
    color: #611E27;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Bildstil */
img {
    margin-left: 20px;
    max-width: 100%;
    height: auto;
    width: auto;
    max-height: 300px; /* Maximale Höhe für die Bilder */
}

/* Fußzeilenstil */
footer {
    text-align: right;
    margin: 20px;
}