.content-section {
    max-width: 800px;
    margin: 60px auto 120px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

h1 {
    font-size: 2.2rem;
    font-weight: bold;
    color: #60AAFF;
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    line-height: 1.6;
    color: #ffffff;
    font-size: 1rem;
    text-align: justify;
    hyphens: auto;
    word-break: break-word;
}

/* Listen ebenfalls im Blocksatz ausrichten */
ul {
    text-align: justify;
    padding-left: 20px;
}

ul li {
    display: block;
    text-align: justify;
    margin-bottom: 5px;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Anpassungen */
@media (max-width: 576px) {
    .content-section {
        margin: 80px 5px 100px;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.9rem;
    }
}
