/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Karla', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.8;
    color: #2c2c2c;
    background: #ffffff;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Header and logo */
header {
    text-align: center;
    margin-bottom: 5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8e8e8;
}

.logo {
    max-width: 540px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 1;
}

/* Main content */
main {
    max-width: 100%;
}

h1 {
    font-size: 2.5rem;
    font-weight: 200;
    margin-bottom: 4rem;
    text-align: center;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

/* Services section */
.services {
    margin-bottom: 5rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-list li::before {
    content: "•";
    color: #999;
    position: absolute;
    left: 0;
    font-size: 1.4rem;
    line-height: 1.2;
}

.service-list li a {
    color: #666;
    text-decoration: underline;
}

.service-list li a:hover {
    color: #1a1a1a;
}

.footer-note {
    margin-top: 3rem;
    font-size: 0.95rem;
    color: #999;
    font-style: italic;
    text-align: left;
}

.footer-note a {
    color: #666;
    text-decoration: underline;
}

.footer-note a:hover {
    color: #1a1a1a;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem 0.5rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    .service-item {
        padding: 1rem;
    }
    
    .contact, .documentation {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    
    .service-item h2 {
        font-size: 1.1rem;
    }
    
    .service-item p {
        font-size: 0.9rem;
    }
}