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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fafafa;
}

/* Layout */
header, main section, footer {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* Header */
header {
    padding: 40px 24px;
    background: white;
    border-bottom: 1px solid #e5e5e5;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
}

.navigation {
    display: flex;
    gap: 32px;
    list-style: none;
}

.navigation a {
    color: #666;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
}

.navigation a:hover {
    color: #EF5A52;
}

/* Main content */
main {
    background: white;
}

/* Hero section */
.hero {
    padding: 60px 24px 160px;
    text-align: center;
}

.logo {
    width: 40px;
    height: auto;
    margin-bottom: 48px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 24px;
    color: #666;
    margin-bottom: 48px;
    font-weight: 400;
}

.hero-description {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 64px;
    line-height: 1.7;
}

.primary-button {
    display: inline-block;
    background: #EF5A52;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.primary-button:hover {
    background: #E04A41;
}

/* Services section */
.services {
    padding: 120px 24px;
    background: #fafafa;
}

.services h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.services-description {
    font-size: 18px;
    color: #666;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
    line-height: 1.7;
}

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

.service {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    transition: border-color 0.2s ease;
}

.service:hover {
    border-color: #EF5A52;
}

.service h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.service p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
footer {
    padding: 80px 24px 40px;
    background: white;
    border-top: 1px solid #e5e5e5;
    text-align: center;
}

.contact-email {
    font-size: 20px;
    color: #EF5A52;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 16px;
    display: inline-block;
    transition: color 0.2s ease;
}

.contact-email:hover {
    color: #E04A41;
}

.footer-text {
    color: #666;
    font-size: 14px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .services h2 {
        font-size: 36px;
    }
    
    .navigation {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 80px 24px 100px;
    }
    
    .services {
        padding: 80px 24px;
    }
} 