/* General Reset */
body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* Header */
.header {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #1f4037, #99f2c8);
    color: white;
}
.header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}
.header p {
    font-style: italic;
    font-size: 1.2rem;
}

/* Navbar */
.navbar {
    background-color: #333;
    text-align: center;
    padding: 10px 0;
}
.navbar ul {
    list-style: none;
}
.navbar li {
    display: inline;
    margin: 0 15px;
}
.navbar a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}
.navbar a:hover {
    color: #99f2c8;
}

/* Sections */
.section {
    padding: 50px 20px;
    text-align: center;
}
.section h2 {
    font-size: 2rem;
    color: #1f4037;
    margin-bottom: 20px;
}
.section p, .section .project {
    font-size: 1rem;
    margin-bottom: 15px;
}

/* Gallery */
.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}
.gallery img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Form */
form {
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
}
form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
form input, form textarea, form button {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
form button {
    background-color: #1f4037;
    color: white;
    border: none;
    cursor: pointer;
}
form button:hover {
    background-color: #99f2c8;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}
