/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.8;
    background-color: #eaeef3;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #1a73e8, #4285f4);
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

header p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

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

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffcc00;
}

/* Main Content */
main {
    padding: 30px;
    max-width: 900px;
    margin: 40px auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

main h2 {
    color: #1a73e8;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.project {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 8px;
    background: #f9f9f9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.project h3 {
    color: #1a73e8;
    margin-bottom: 10px;
}

.project p,
.project ul {
    margin: 10px 0;
    color: #555;
}

.project ul li {
    list-style: disc inside;
    margin-left: 10px;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 15px 0;
    background: #1a73e8;
    color: white;
    margin-top: 30px;
}

/* Contact Section */
#contact p {
    margin: 10px 0;
}

#contact a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: bold;
}

#contact a:hover {
    color: #ffcc00;
}

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

    nav ul li {
        margin: 10px 0;
    }
}