/* ---------- Yleiset asetukset ---------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8edf5 100%);
    color: #1f2937;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    }

.card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    max-width: 600px;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
    }

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
    }

img {
    width: 160px;
    margin-bottom: 20px;
    }

h1 {
    margin: 0 0 12px;
    font-size: 2rem;
    color: #0b7d3b;
    }

p {
    margin: 8px 0;
    line-height: 1.6;
    }

.muted {
    color: #6b7280;
    }

.contact {
    margin-top: 20px;
    font-weight: 600;
    }

a {
    color: #2563eb;
    text-decoration: none;
    }

a:hover {
    text-decoration: underline;
    }

.footer {
    margin-top: 32px;
    font-size: 0.9rem;
    color: #9ca3af;
}

.button {
    display: inline-block;
    margin-top: 24px;
    padding: 12px 24px;
    background: #0b7d3b;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

.button:hover {
    background: #086432;
    text-decoration: none;
}