* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #666;
    background-color: #f5f5f5;
}

header {
    background: white;
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

header img {
    max-width: 250px;
    height: auto;
}

main {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.content {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.content h1 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: normal;
}

.content p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.8;
}

.content a {
    color: #2980b9;
    text-decoration: none;
    border-bottom: 1px solid rgba(41, 128, 185, 0.3);
    transition: border-color 0.2s ease;
}

.content a:hover {
    border-bottom-color: #2980b9;
}

.impressum {
    background: white;
    padding: 40px;
    border-radius: 4px;
}

.impressum h2 {
    color: #333;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: normal;
}

.impressum h3 {
    color: #333;
    font-size: 16px;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: bold;
}

.impressum h4 {
    color: #333;
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: bold;
}

.impressum-content p {
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 1.8;
}

.impressum-content a {
    color: #e74c3c;
    text-decoration: none;
}

.impressum-content a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 20px;
    color: #999;
    font-size: 12px;
}

footer a {
    color: #e74c3c;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    main {
        padding: 20px 10px;
    }

    .content,
    .impressum {
        padding: 20px;
    }

    .content h1 {
        font-size: 20px;
    }

    .impressum h2 {
        font-size: 18px;
    }
}