body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 180px;
    }
}

header {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

header .logo {
    color: var(--text);
    font-family: var(--mono);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.5px;
}

main {
    flex: 1;
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

h1 {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: clamp(32px, 6vw, 40px);
}

h2 {
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: clamp(22px, 4.5vw, 26px);
}

h3 {
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: clamp(18px, 4vw, 20px);
}

p,
li {
    line-height: 1.6;
    color: var(--muted);
}

ul,
ol {
    padding-left: 24px;
}

li {
    margin-bottom: 8px;
}

/* Contact card component */
.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.contact-card h2 {
    margin-top: 0;
    margin-bottom: 16px;
    color: var(--text);
}

.contact-card p {
    margin-bottom: 8px;
}

.contact-card p:last-child {
    margin-bottom: 0;
}
