/* General styles for Markdown */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    width: 100%;
    max-width: 1600px;
    margin: 50px auto;
    padding: 2rem;
    background-color: #f7f7f7;
}

h1, h2, h3, h4 {
    color: #0056b3;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 0.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p, ul, ol {
    margin-bottom: 1rem;
}

ul {
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

a {
    color: #0056b3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

pre, code {
    background: #eef;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
}

footer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #666;
}

/* Two-column layout for image and CV */
.two-columns {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-left: auto;
    margin-top: 2rem;
    margin-right: auto;
    margin-bottom: 2rem;
    
}

.two-columns img {
    width: 40%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    border: 3px solid #0056b3;
}

.two-columns div {
    width: 60%;
    flex: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .two-columns {
        flex-direction: column;
        align-items: center;
    }

    .two-columns img {
        margin-bottom: 1rem;
        width: 100%;
    }
}
