body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background-color: #002b5c;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.hero {
    text-align: center;
    padding: 30px;
    background-color: #eaeaea;
}

.hero img {
    max-width: 600px;
    width: 90%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.services {
    padding: 40px;
    background-color: #fff;
}

.services h2 {
    text-align: center;
    margin-bottom: 20px;
}

.services ul {
    list-style-type: none;
    padding: 0;
    max-width: 600px;
    margin: auto;
}

.services li {
    padding: 10px 0;
    font-size: 1.1em;
}

footer {
    background-color: #002b5c;
    color: white;
    text-align: center;
    padding: 15px 0;
}

.projects {
    padding: 40px;
    background-color: #f3f3f3;
}

.projects h2,
.contact h2 {
    text-align: center;
    margin-bottom: 20px;
}

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

.project {
    background: white;
    padding: 20px;
    width: 300px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.contact {
    padding: 40px;
    background-color: #fff;
    text-align: center;
}

.contact form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.contact input,
.contact textarea {
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.contact button {
    padding: 10px;
    background-color: #002b5c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

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

