.musiktherapie,
.aktive {
    max-width: 1200px;
    margin: 50px auto;
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(29, 78, 137, 0.12);
}
.musiktherapie {
    background: linear-gradient(135deg, #f8fdff, #dff3ff);
}
.aktive {
    background: linear-gradient(135deg, #eaf6ff, #ffffff);
}
.therapie,
.musizieren {
    display: flex;
    align-items: center;
    gap: 50px;
}
.texto {
    flex: 1.4;
}
.imagem {
    flex: 1;
}
.imagem img {
    width: 100%;
    max-width: 450px;
    border-radius: 25px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.texto h1 {
    color: #1d4e89;
    font-size: 2.3rem;
    margin-bottom: 20px;
    line-height: 1.3;
}
.texto h2 {
    color: #256fb0;
    font-size: 1.5rem;
    margin: 25px 0 15px;
}
.texto p {
    color: #333;
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 15px;
}
.texto ul {
    margin: 15px 0 25px 25px;
}
.texto li {
    margin-bottom: 12px;
    line-height: 1.8rem;
    color: #333;
}
.texto a {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    background: #4a90e2;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}
.texo a:hover {
    background: #1d4e89;
    transform: translateY(-3px);
}
@media(max-width: 850px){
    .therapie,
    .musizieren{
        flex-direction: column;
    }
    .musiktherapie,
    .aktive {
        margin: 35px 15px;
        padding: 28px 22px;
    }
    .texto h1 {
        font-size: 1.8rem;
    }
    .texto h2 {
        font-size: 1.3rem;
    }
    .imagem img {
        max-width: 100%;
    }
    .texo a {
        display: block;
        text-align: center;
    }
}