body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
.header {
    background-color: #004080;
    color: white;
    text-align: center;
    padding: 1em 0;
    position: relative;
}
.header img {
    position: absolute;
    top: 10px;
    left: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.header h1 {
    margin: 0;
    font-size: 2em;
}
.header p {
    font-size: 1.1em;
    margin: 0.5em 0 0;
}
.nav {
    background-color: #333;
    overflow: hidden;
}
.nav a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
}
.nav a:hover {
    background-color: #ddd;
    color: black;
}
.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px 0;
}
.section {
    margin-bottom: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
h2 {
    border-bottom: 2px solid #004080;
    padding-bottom: 10px;
    color: #004080;
}
.services-list, .team-list, .contact-info {
    list-style-type: none;
    padding: 0;
}
.services-list li, .team-list li, .contact-info li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}
.services-list li:last-child, .team-list li:last-child, .contact-info li:last-child {
    border-bottom: none;
}
.services-list li, .team-list li, .contact-info li {
    display: flex;
    align-items: center;
}
.services-list li::before, .team-list li::before, .contact-info li::before {
    content: '•';
    color: #004080;
    font-size: 1.5em;
    margin-right: 10px;
}
.contact-info li a {
    color: #004080;
    text-decoration: none;
}
.contact-info li a:hover {
    text-decoration: underline;
}
.footer {
    background-color: #004080;
    color: white;
    text-align: center;
    padding: 1em 0;
    margin-top: 20px;
}
button {
    background-color: #004080;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    margin-top: 10px;
    display: inline-block;
}
button:hover {
    background-color: #002a5c;
    transform: scale(1.05);
}
