body {
    font-family: 'Inter', sans-serif;
}

.hero {
    background: linear-gradient(135deg, #0052cc, #00a8a8);
    padding: 100px 0;
}

.card {
    transition: transform 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
    }

.navbar .btn-primary {
    background: #00a8a8;
    border-color: #00a8a8;
}

    .navbar .btn-primary:hover {
        background: #008888;
        border-color: #008888;
    }

footer a:hover {
    color: white !important;
}

/* ============================================
   Sprachumschalter (Language Switch)
   ============================================ */
.language-switch {
    display: inline-block;
    margin-left: 15px;
}

    .language-switch a {
        text-decoration: none;
        color: #666;
        font-size: 14px;
    }

        .language-switch a.active {
            color: #0052cc;
            font-weight: bold;
        }

        .language-switch a:hover {
            color: #00a8a8;
        }