body {
    font-family: 'Merriweather', serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f9f9f9, #e3e3e3);
    color: #333;
}

.hero {
    background: url('fotos/datenschutz-header.jpg') center/cover no-repeat;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    z-index: 2;
    position: relative;
}

.datenschutz-section {
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: -50px auto 0 auto;
}

.container {
    line-height: 1.8;
    font-size: 1rem;
    color: #555;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1E3A5F;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

p {
    margin-bottom: 20px;
}

p:last-child {
    margin-bottom: 0;
}
.hero {
    position: relative;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}

.hero-image-container {
    width: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}

