body {
    font-family: "Open Sans", sans-serif;
    background: #fff8f0;
    color: #333;
    margin: 0;
    text-align: center;
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    background: #e6a33c;
    color: white;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background: #f1b24a;
}

.site-footer {
    background: linear-gradient(180deg, #fffdfb, #fbf7f5);
    border-top: 1px solid rgba(178, 34, 34, 0.06);
    padding: 14px 20px;
    margin-top: 40px;
    font-family: "Segoe UI", sans-serif;
    color: #444;
    font-size: 0.9rem;
}

.site-footer .container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    /* 🎯 Inhalt mittig */
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    text-align: center;
}

.site-footer .footer-link {
    color: #b22222;
    text-decoration: none;
    font-weight: 600;
    margin-left: 8px;
}

.site-footer .footer-link:hover {
    text-decoration: underline;
}

.site-footer .sep {
    color: #ccc;
    margin: 0 8px;
}

@media (max-width:600px) {
    .site-footer .container {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
}
