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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */

.site-header {
    border-bottom: 1px solid #eee;
    padding: 22px 0;
}

.site-header .container {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.brand {
    font-size: 1.15em;
    font-weight: 500;
    letter-spacing: -0.4px;
    color: #1a1a1a;
    text-decoration: none;
}

.site-nav {
    display: flex;
    gap: 24px;
}

.site-nav a {
    color: #666;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.2s ease;
}

.site-nav a:hover {
    color: #1a1a1a;
}

.site-nav a[aria-current="page"] {
    color: #1a1a1a;
}

/* Main */

main {
    flex: 1;
    padding: 56px 0 72px;
    animation: fadeIn 0.6s ease-in;
}

h1 {
    font-size: 2.5em;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.lead {
    font-size: 1.2em;
    font-weight: 300;
    color: #333;
    margin-bottom: 24px;
}

h2 {
    font-size: 1.35em;
    font-weight: 500;
    letter-spacing: -0.3px;
    margin: 48px 0 12px;
}

h3 {
    font-size: 1.05em;
    font-weight: 500;
    margin: 26px 0 8px;
}

p, ul {
    color: #555;
    margin-bottom: 16px;
}

ul {
    padding-left: 22px;
}

li {
    margin-bottom: 6px;
}

a {
    color: #333;
}

a:hover {
    color: #000;
}

.section {
    border-top: 1px solid #eee;
    padding-top: 8px;
    margin-top: 48px;
}

.section h2 {
    margin-top: 24px;
}

/* Company details table */

.details {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 16px;
}

.details th,
.details td {
    text-align: left;
    vertical-align: top;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-weight: 400;
    color: #555;
}

.details th {
    color: #666;
    font-weight: 400;
    width: 40%;
    padding-right: 20px;
}

.details td {
    color: #1a1a1a;
}

/* Footer */

.site-footer {
    border-top: 1px solid #eee;
    padding: 28px 0 40px;
    color: #777;
    font-size: 0.9em;
}

.site-footer p {
    color: #777;
    margin-bottom: 6px;
}

.site-footer a {
    color: #555;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }

    .lead {
        font-size: 1.1em;
    }

    main {
        padding: 40px 0 56px;
    }

    .details th,
    .details td {
        display: block;
        width: 100%;
        padding: 0;
        border: none;
    }

    .details th {
        padding-top: 14px;
    }

    .details td {
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }
}
