* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f0f0f0;
    padding: 20px;
}

.portfolio-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

header {
    background-color: #2e7d32;
    color: white;
    padding: 20px;
    text-align: center;
}

nav {
    background-color: #2e7d32;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.3);
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9em;
}

.content-section {
    padding: 25px 20px;
    border-bottom: 1px solid #eee;
}

.content-section h2 {
    color: #2e7d32;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.about-me {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.profile-pic {
    width: 50px;
    height: 50px;
    background-color: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.about-text {
    flex: 1;
    font-size: 0.9em;
    line-height: 1.5;
}

.project {
    border: 1px solid #eee;
    padding: 15px;
    margin-bottom: 15px;
}

.project h3 {
    font-size: 1em;
    margin-bottom: 5px;
    color: #333;
}

.project p {
    font-size: 0.85em;
    color: #666;
    line-height: 1.4;
}

.skills-list {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 0.9em;
    line-height: 1.6;
}

.contact-list {
    list-style-type: none;
    font-size: 0.9em;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .about-me {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    nav a {
        display: inline-block;
        margin: 5px 10px;
    }
}