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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f3ee;
    padding: 3rem 2rem;
}

.container {
    max-width: 700px;
    margin: 0 auto;
}

header {
    margin-bottom: 3rem;
}

h1 {
    font-size: 2.25rem;
    font-weight: 600;
    color: #1a1a1a;
}

h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #d0d0d0;
}

section {
    margin-top: 2rem;
}

.experience-item {
    margin-bottom: 1.5rem;
}

.experience-item:last-child {
    margin-bottom: 0;
}

main p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

main p:last-child {
    margin-bottom: 0;
}

main a {
    color: #777;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

main a:hover {
    color: #000;
}

footer {
    margin-top: 3rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-links a {
    color: #555;
    font-size: 1.2rem;
    transition: color 0.2s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: #000;
}

.social-links a.x-icon svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

@media (max-width: 768px) {
    body {
        padding: 2rem 1.5rem;
    }
    
    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    main p {
        font-size: 1rem;
    }
}

