/* Gelbe Box */
.yellow-box {
    background: #ffeb3b;
    width: 70%;
    margin-left: 30px; 
    padding: 30px;
    box-sizing: border-box;
    border-radius: 20px;
}

/* Text */
.yellow-box h1 {
    margin-top: 0;
    color: black;
}

.yellow-box p {
    color: black;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .yellow-box {
        width: 90%; /* mehr Platz auf kleinen Geräten */
        margin: 40px auto;
    }
}

@media (max-width: 480px) {
    .yellow-box {
        width: 95%;
        padding: 20px; /* etwas weniger Innenabstand */
    }
}
