* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.container {
    max-width: 600px;
    margin: 40px auto;
    padding: 0 20px;
}


.header-top {
    display: flex;
    align-items: center; 
    justify-content: space-between; 
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eaeaea; 
    padding-bottom: 1rem;
}

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


.resume-btn {
    font-size: 0.85rem;
    color: #555;
    background-color: #fafafa;
    border: 1px solid #ddd;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.resume-btn:hover {
    background-color: #f0f0f0;
    border-color: #ccc;
    color: #111;
    text-decoration: none;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #111;
}


.projects-section {
    margin-top: 2.5rem;
}


.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.list-styles {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-styles li {
    margin-bottom: 0.6rem;
    line-height: 1.4;
}


@media (max-width: 480px) {
    .header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}