body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    background-color: #000;
    font-size: 18px;
}

header {
    background: rgba(0, 0, 0, 0.7) url('https://marcelhansen.de/wp-content/uploads/2022/09/image00008-U.png') center/cover no-repeat;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

header img {
    width: 800px;
    margin-bottom: 20px;
}

.small-header {
    background: rgba(0, 0, 0, 0.7) url('https://marcelhansen.de/wp-content/uploads/2022/09/image00008-U.png') center/cover no-repeat;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

nav {
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 40px;
    text-align: center;
    margin: 0 auto;
    border-radius: 8px;
}

nav ul {
    list-style: none;
    display: inline-flex;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

section {
    padding: 60px 20px;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.service-item {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.service-item h3 {
    margin-top: 0;
}

.service-item p {
    font-size: 1.1rem;
}

.service-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 10px;
}

#about {
    background: rgba(0, 0, 0, 0.7) url('https://marcelhansen.de/wp-content/uploads/2022/09/image00003-U.png') center/cover no-repeat;
    padding: 60px 20px;
    text-align: center;
}

.about-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 40px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content p {
    max-width: 600px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
    text-align: left;
}

.about-content img {
    width: 350px;
    border-radius: 8px;
}

#contact {
    text-align: center;
    padding: 60px 20px;
}

#impressum {
    text-align: center;
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

#impressum p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

footer {
    background: #111;
    padding: 20px;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 1rem;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}
#feedback {
            text-align: center;
            padding: 60px 20px;
        }

        .feedback-container {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            gap: 20px;
        }

        .feedback-item {
            flex: 1;
            text-align: center;
            position: relative;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
        }

        .feedback-item img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-bottom: 10px;
        }

        .feedback-item:nth-child(2) {
            transform: scale(1.2);
            z-index: 1;
        }

        .feedback-item p {
            font-size: 1rem;
            color: #fff;
        }

        .feedback-item:nth-child(2) p {
            font-size: 1.2rem;
            font-weight: bold;
        }
