/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

header nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
}

header nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
#home {
    background-color: #005f73;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

#home h1 {
    font-size: 3em;
}

#home p {
    font-size: 1.5em;
}

/* About Section */
#about {
    padding: 50px;
    background-color: #fff;
    text-align: center;
}

#about h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#about p {
    font-size: 1.2em;
}

/* Skills Section */
#skills {
    padding: 50px;
    background-color: #e0f7fa;
    text-align: center;
}

#skills h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#skills ul {
    list-style: none;
    padding: 0;
}

#skills ul li {
    display: inline-block;
    margin: 10px;
    font-size: 1.2em;
}

/* Projects Section */
#projects {
    padding: 50px;
    background-color: #fff;
    text-align: center;
}

#projects h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.project-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.project-card {
    background-color: #e0f7fa;
    padding: 20px;
    border-radius: 8px;
    width: 30%;
}

.project-card h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.project-card a {
    display: inline-block;
    margin-top: 10px;
    color: #005f73;
    text-decoration: none;
}

.project-card a:hover {
    text-decoration: underline;
}

/* Contact Section */
#contact {
    padding: 50px;
    background-color: #005f73;
    color: #fff;
    text-align: center;
}

#contact h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#contact form {
    display: inline-block;
    margin-top: 20px;
}

#contact input,
#contact textarea {
    width: 300px;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

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

#contact button:hover {
    background-color: #444;
}

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