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

body {
    font-family: 'Inconsolata', 'Courier New', monospace;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.7;
    font-size: 17px;
}

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

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links a {
    color: #555;
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.2s;
}

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

/* Hero */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem 0;
    background: #ffffff;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero .subtitle {
    color: #555;
    max-width: 600px;
    font-size: 1.1rem;
}

/* Services */
.services {
    padding: 4rem 0;
    background: #f5f5f5;
}

.services h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 2rem;
    transition: border-color 0.2s;
}

.service-card:hover {
    border-color: #1a1a1a;
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #555;
    font-size: 0.95rem;
}

/* Contact */
.contact {
    padding: 4rem 0;
    background: #ffffff;
    text-align: center;
}

.contact h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact p {
    color: #555;
    margin-bottom: 1.5rem;
}

.contact-link {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 2px;
    font-weight: 700;
}

.contact-link:hover {
    color: #555;
    border-color: #555;
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.footer p {
    color: #555;
    font-size: 0.875rem;
}

/* Mobile */
@media (max-width: 600px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links a {
        margin: 0 1rem;
    }
    
    .hero {
        padding-top: 7rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
}

/* Language Switcher */
.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.lang-switch {
    display: flex;
    gap: 0.5rem;
    padding-left: 1.5rem;
    border-left: 1px solid #e0e0e0;
}

.lang {
    text-decoration: none;
    color: #999;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 2px;
    transition: color 0.2s;
}

.lang:hover {
    color: #555;
}

.lang.active {
    color: #1a1a1a;
    background: #f0f0f0;
}
