/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Container */
.container {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
}

/* Header */
.header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.header h1 {
    margin: 0;
    font-size: 2.5em;
}

.header p {
    font-size: 1.2em;
    margin: 10px 0 20px;
}

.nav-links {
    list-style-type: none;
    padding: 0;
}

.nav-links li {
    display: inline;
    margin: 0 10px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Sections */
section {
    padding: 60px 0;
}

.about-section {
    background-color: #fff;
}

.skills-section {
    background-color: #e9e9e9;
}

.projects-section {
    background-color: #fff;
}

.contact-section {
    background-color: #e9e9e9;
}

h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
}

.skills {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.skill-item {
    width: 45%;
    margin-bottom: 20px;
}

.skill-item h3 {
    font-size: 1.5em;
    color: #333;
}

.project-item {
    margin-bottom: 20px;
}

.project-item h3 {
    font-size: 1.5em;
    color: #333;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form input, .contact-form textarea {
    width: 80%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #555;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .skills {
        flex-direction: column;
    }

    .skill-item {
        width: 100%;
    }

    .contact-form input, .contact-form textarea {
        width: 100%;
    }
}