
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #333;
}
nav {
    background: #003366;
    color: white;
    padding: 1em;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    margin: 0;
    padding: 0;
}
nav ul li a {
    color: white;
    text-decoration: none;
}
nav ul li a.active {
    font-weight: bold;
}
header.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #eeeeee;
    padding: 2em;
}
.hero img {
    width: 200px;
    border-radius: 10px;
    margin-bottom: 1em;
}
.hero-text {
    text-align: center;
}
.btn {
    background-color: #003366;
    color: white;
    padding: 0.75em 1.5em;
    text-decoration: none;
    margin-top: 1em;
    display: inline-block;
}
.content {
    padding: 2em;
}
.services-list {
    list-style-type: square;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1em;
}
td, th {
    border: 1px solid #ccc;
    padding: 0.75em;
    text-align: left;
}
form input, form textarea {
    width: 100%;
    padding: 0.75em;
    margin-bottom: 1em;
}
form button {
    background-color: #003366;
    color: white;
    border: none;
    padding: 0.75em 2em;
}
