/* Reset some basic elements */
body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
}

/* Apply a consistent font */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    padding: 0 20px;
}

.container {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

/* Header and navigation styles */
.site-header {
    background: #005a87;
    color: #ffffff;
    padding-top: 20px;
    min-height: 60px;
    border-bottom: #022d41 3px solid;
}

.site-header h1.logo a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 24px;
}

.site-nav ul {
    list-style: none;
    padding: 0;
    text-align: right;
}

.site-nav ul .nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
}

.site-nav ul .nav-link:hover {
    background-color: #022d41;
}

/* Section styles */
section {
    padding: 20px 0;
    background: #fff;
}

.hero {
    background: #e9ecef;
    padding: 40px 0;
}

.services-section, .about-section, .contact-section {
    background: #ffffff;
    margin: 20px 0;
}

/* Footer styles */
.site-footer {
    background: #005a87;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
}

/* Button styles */
.cta {
    display: inline-block;
    background: #022d41;
    color: #ffffff;
    padding: 10px 20px;
    margin-top: 20px;
    text-decoration: none;
    border-radius: 5px;
}

.cta:hover {
    background: #005a87;
}

/*