html, body {
    height: 100%;
    width: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f5f5f5;
}


.content {
    flex: 1 1 auto;
    width: 100%;
    overflow-y: auto;
    max-width: 1200px;      /* optional: schöner auf großen Bildschirmen */
    margin: 0 auto;         /* zentriert */
    padding: 30px 30px;     /* Abstand links & rechts */
}

.scroll-content > * {
    background: #fff;
    padding: 25px 30px;
    margin: 20px auto;
    max-width: 1200px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.footer {
    flex-shrink: 0;
    background: #eee;
    padding: 15px;
    text-align: center;
}

.home-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f7f7f7;
    border-left: 4px solid #333;
}

.home-section h2 {
    margin-top: 0;
}

.impressum-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f7f7f7;
    border-left: 4px solid #333;
}

.impressum-section h2 {
    margin-top: 0;
}

.references {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.references th, .references td {
    padding: 12px;
    vertical-align: top;
    text-align: left;
}

/* Spaltentrennung */
.references td, .references th {
    border-right: 1px solid #ccc;
}

.references td:last-child,
.references th:last-child {
    border-right: none;
}

/* Alternierende Hintergrundfarben */
.references tr:nth-child(even) {
    background: #acacac;
}

.references tr:nth-child(odd) {
    background: #ffffff;
}

.references th:first-child {
    width: 130px;   /* oder 200px, 250px – je nach Geschmack */
}

/* Projektdauer rechtsbündig + kursiv */
.references .duration div {
    text-align: right;
    font-style: italic;
    line-height: 1.3;
    width: 130px;   /* oder 200px, 250px – je nach Geschmack */
}

.leistung-block {
    margin-bottom: 30px;
    padding: 20px;
    background: #f7f7f7;
    border-left: 4px solid #333;
}

.leistung-block h2 {
    margin-top: 0;
}

.leistung-block ul {
    margin: 10px 0 0 20px;
}

.kontakt-form {
    width: 100%;
    max-width: 1000px;
    padding: 20px;
    background: #f7f7f7;
    border-left: 4px solid #333;
}

.kontakt-form input,
.kontakt-form textarea {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.kontakt-form button {
    padding: 10px 20px;
    background: #333;
    color: #fff;
    border: none;
    cursor: pointer;
}

.kontakt-form button:hover {
    background: #555;
}