html, body {
    margin: 0;
    padding: 0;
    background: #0f1115;
    color: #d7dae0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
}

body {
    display: flex;
    justify-content: center;
    padding: 6rem 1.5rem;
}

main {
    display: grid;
    grid-template-columns: 60px 480px 180px;
    gap: 2rem;
    max-width: 960px;
    width: 100%;
}

.logo {
    width: 64px;
    height: auto;
    display: block;
}

.content {
    min-width: 0;
}

p {
    margin: 0 0 1.2rem 0;
    font-size: 1rem;
    color: #b6bcc8;
}

.lead {
    color: #d7dae0;
}

.contact {
    font-size: 0.95rem;
    white-space: nowrap;
}

a {
    color: #8ab4ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 800px) {
    main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .logo {
        width: 48px;
    }

    .contact {
        white-space: normal;
    }
}
