body {
    font-family: system-ui, -apple-system, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    line-height: 1.6;
    background: #fafafa;
}

.container {
    background: white;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
    border-bottom: 2px solid gray;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.link-card {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.link-card:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

.link-card h2 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.link-card p {
    margin: 0;
}

.features ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.features li {
    background: #ecfdf5;
    padding: 1rem;
    border-left: 4px solid #10b981;
}
