* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

header {
    background: #1a3c34;
    color: white;
    text-align: center;
    padding: 2rem;
}

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

nav {
    background: #f4f4f4;
    padding: 1rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #1a3c34;
    font-weight: bold;
}

nav a:hover {
    color: #e67e22;
}

section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    color: #1a3c34;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.skills, .projects {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.skill, .project {
    background: #f4f4f4;
    padding: 1rem;
    border-radius: 5px;
    flex: 1 1 300px;
}

.about, .education, .interests {
    background: #fff;
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.education a {
    color: #e67e22;
    text-decoration: none;
    font-weight: bold;
}

.education a:hover {
    text-decoration: underline;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact input, .contact textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact button {
    background: #1a3c34;
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.contact button:hover {
    background: #e67e22;
}

footer {
    background: #1a3c34;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    header h1 {
        font-size: 2rem;
    }

    section {
        padding: 1rem;
    }
}
