/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

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

a:hover {
    text-decoration: underline;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}

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

nav h1 {
    margin: 0;
    font-size: 1.5rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #333;
    font-weight: 500;
}

nav a:hover {
    color: #0066cc;
}

/* Sections */
section {
    padding: 4rem 0;
}

.hero {
    text-align: center;
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 1rem;
}

.cta-button {
    display: inline-block;
    background: #0066cc;
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 500;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #0052a3;
    text-decoration: none;
}

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

.work-item {
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
}

.work-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

/* Contact */
.contact {
    text-align: center;
    background: #f8f9fa;
}

.contact a {
    font-size: 1.2rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #e9ecef;
}

.social-links img {
    display: block;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    color: #ccc;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
    }
}