.legal-section {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.legal-box {
    background-color: #222;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    text-align: center;
}

.legal-title {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #fff;
}

.legal-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.legal-button {
    background-color: #28a745;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.legal-button:hover {
    background-color: #1e7e34;
}

/* Optional für Desktop nebeneinander */
@media (min-width: 768px) {
    .legal-buttons {
        flex-direction: row;
        justify-content: center;
    }
}
