body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #111;
    color: #eee;
}
.topnav {
    background: #000;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #b61f24;
}
.topnav a {
    color: #ddd;
    margin-left: 20px;
    text-decoration: none;
}
.cta {
    background: #b61f24;
    padding: 8px 15px;
    border-radius: 6px;
    color: #fff !important;
    font-weight: bold;
}
.logo {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}
.hero {
    padding: 80px 40px;
    text-align: center;
}
.btn-red {
    background: #b61f24;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}
.btn-white {
    background: #fff;
    padding: 10px 20px;
    color: #000;
    border-radius: 6px;
    text-decoration: none;
}
.features {
    display: flex;
    justify-content: space-around;
    padding: 40px;
}
.feature-box {
    text-align: center;
    padding: 20px;
}
.statement {
    text-align: center;
    padding: 40px;
    background: #222;
}
.contact {
    display: flex;
    justify-content: space-around;
    padding: 50px;
}
.estimate-box {
    background: #222;
    padding: 25px;
    border-radius: 8px;
    width: 300px;
}
input, textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
    border-radius: 4px;
    border: none;
}
footer {
    text-align: center;
    padding: 20px;
    color: #888;
}
