/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    font-size: 18px;
}

/* Navigation */
.navbar {
    background-color: #2c3e50;
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar a {
    color: white;
    text-decoration: none;
    margin: 0 2rem;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #3498db;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

/* Left column */
.left-column {
    flex: 0 0 300px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 2rem;
}

.profile-pic {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 50%;
    display: block;
    margin: 0 auto 2rem;
    border: 4px solid #ecf0f1;
}

.contact-section h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-family: 'Libre Baskerville', serif;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
    font-size: 26px;
    font-weight: bold;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #3498db;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.address {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #ecf0f1;
}

.address p {
    margin-bottom: 0.3rem;
    font-size: 18px;
}

/* Right column */
.right-column {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header h1 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-family: 'Libre Baskerville', serif;
    font-size: 40px;
    font-weight: bold;
}

.header p {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        gap: 2rem;
    }

    .left-column {
        position: static;
        flex: none;
    }

    .navbar a {
        margin: 0 1rem;
        font-size: 1rem;
    }

    .header h1 {
        font-size: 2rem;
    }
}