* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 40px 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(180deg, #fff9c9, #fff3a0);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.card {
    width: min(100%, 540px);
    background: #fff;
    border-radius: 18px;
    padding: 42px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.logo {
    width: 90px;
    display: block;
    margin: 0 auto 18px;
}

h2 {
    margin: 0 0 8px;
    font-size: 1.9rem;
    font-weight: 700;
}

.subtitle {
    color: #666;
    margin-bottom: 32px;
}

.contact {
    width: fit-content;
    margin: 0 auto;
    text-align: left;
}

.firmen-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    line-height: 1.5;
    text-align: center;
}

.firmen-row strong {
    font-size: 1.1rem;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 10px;
    justify-content: center;
}

.info-row i {
    color: #71b315;
    font-size: 1.2rem;
    width: 22px;
    margin-top: 2px;
}

.info-row span {
    line-height: 1.55;
    flex: 1;
}

.info-row a {
    color: inherit;
    text-decoration: none;
    transition: color .2s;
}

.info-row a:hover {
    color: #71b315;
}

.button {
    display: inline-block;
    margin-top: 36px;
    padding: 14px 34px;
    border-radius: 10px;
    background: #71b315;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: .2s ease;
}

.button:hover {
    background: #7bc21a;
    transform: translateY(-1px);
}

footer {
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid #ececec;
    font-size: .9rem;
    color: #777;
}

footer div {
    margin-bottom: 8px;
}

footer a {
    color: inherit;
    text-decoration: none;
}

footer a:hover {
    color: #71b315;
}

noscript p {
    color: #888;
    font-size: .9rem;
    margin-top: 20px;
}