/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f7f7f7;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #333;
    color: white;
    padding: 50px 0;
    text-align: center;
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.5em;
    margin-bottom: 20px;
}

header nav ul {
    list-style-type: none;
    padding: 0;
}

header nav ul li {
    display: inline-block;
    margin: 0 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

header nav ul li a:hover {
    color: #007bff;
}

/* Section Styles */
.section {
    padding: 60px 0;
    background-color: #fff;
}

.section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
}

.project {
    margin-bottom: 30px;
}

.project h3 {
    font-size: 2em;
    margin-bottom: 10px;
}

.project p {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.project a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.project a:hover {
    text-decoration: underline;
}

/* Contact Form */
form input,
form textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    font-size: 1em;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form button {
    padding: 15px;
    background-color: #333;
    color: white;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
}

form button:hover {
    background-color: #555;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 30px 0;
}

footer p {
    font-size: 1em;
    margin-bottom: 15px;
}

footer .social-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin: 0 10px;
}

footer .social-links a:hover {
    text-decoration: underline;
}
