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

.logo {
    max-height: 60px;
    margin-bottom: 20px;
}

.hero {
    background-color: #002b55;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 2.5em;
}

.cta-button {
    background-color: #3399ff;
    padding: 12px 24px;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.topnav {
    background-color: #003366;
    overflow: hidden;
    text-align: center;
}

.topnav a {
    display: inline-block;
    color: white;
    padding: 14px 16px;
    text-decoration: none;
}

.topnav a:hover {
    background-color: #0059b3;
}

.section {
    padding: 50px 20px;
}

.section.light {
    background-color: #eaf2fb;
}

.container {
    max-width: 900px;
    margin: auto;
}

.services {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-around;
    margin-top: 30px;
}

.service {
    flex: 1 1 200px;
    text-align: center;
}

.service img {
    width: 60px;
    height: auto;
    margin-bottom: 10px;
}

footer {
    text-align: center;
    background-color: #003366;
    color: white;
    padding: 20px;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.header-flex img.logo {
    max-height: 70px;
    width: auto;
}

@media (max-width: 600px) {
    .header-flex {
        flex-direction: column;
    }
}

footer a {
    color: white;
    text-decoration: underline;
}

footer a:hover {
    color: #ccc;
}

