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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

.content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

.text-column {
    padding-right: 2rem;
}

.text-column h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.text-column h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    color: #34495e;
}

.bio p,
.social p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #555;
}

.projects ul,
.social ul {
    list-style: none;
}

.projects li,
.social li {
    margin-bottom: 0.5rem;
}

.projects a,
.social a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.projects a:hover,
.social a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.image-column {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.profile-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .text-column {
        padding-right: 0;
    }
    
    .text-column h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 1rem;
    }
}