/* Custom styles can go here */
body {
    background-color: #f5f5f5;
}

.get-a-quote-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 16px;
    color: #fff;
    background-color: #0073aa;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.get-a-quote-button:hover {
    background-color: #005177;
}