body {
    font-family: Arial, sans-serif;
    background-color: #545a5d;
    color: white;
    margin: 0;
    padding: 0;
}

header {
    background-color: #145f7f;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2em;
    color: white;
    font-weight: bold;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    background-color: #63cd4a;
    padding: 10px 20px;
    border-radius: 0;
}

nav ul li a:hover {
    background-color: #4ba63a;
}

.banner img {
    width: 100%;
    height: auto;
}

.main-content {
    padding: 20px;
    text-align: center;
}

.main-content p {
    margin: 0 auto;
    max-width: 800px;
}

.main-content .column {
    width: 45%;
    display: inline-block;
    vertical-align: top;
    padding: 20px;
    box-sizing: border-box;
}

footer {
    background-color: #145f7f;
    padding: 10px;
    text-align: center;
}

footer p {
    margin: 0;
    color: white;
}

.quote-banner {
    background-color: #c40e2f;
    padding: 10px;
    text-align: center;
}

.quote-banner .quote-button {
    background-color: white;
    color: #c40e2f;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.quote-banner .quote-button:hover {
    background-color: #e0304d;
    color: white;
}
