body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    color: #333;
}

header {
    margin-bottom: 2rem;
}

h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
}

h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    color: #2a2a2a;
}

h3 {
    font-size: 1.3rem;
    color: #3a3a3a;
}

section {
    margin-bottom: 2rem;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul, ol {
    padding-left: 1.5rem;
}

li {
    margin-bottom: 1rem;
}

.products ul {
    list-style: none;
    padding: 0;
}

.products li {
    margin-bottom: 2rem;
}

.intro {
    font-size: 1.2rem;
    line-height: 1.8;
}

// ... existing styles ...

.contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.social-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-links li {
    margin: 0;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.social-links a:hover {
    background-color: #f5f5f5;
    text-decoration: none;
}

.icon {
    width: 24px;
    height: 24px;
}

@media (max-width: 600px) {
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
}