* {
    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: #333;
    background: #fafafa;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

header {
    text-align: center;
    margin-bottom: 80px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 10px;
    color: #222;
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
}

.projects {
    display: grid;
    gap: 50px;
}

.project {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.project-image {
    width: 100%;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.project:hover .project-image img {
    transform: scale(1.02);
}

.project-content {
    padding: 25px 30px 30px;
}

.project h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #222;
    font-weight: 500;
}

.project p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 600px) {
    .container {
        padding: 40px 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .project-content {
        padding: 20px 25px 25px;
    }
    
    .project h3 {
        font-size: 1.3rem;
    }
}