body {
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: orange;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

header {
    background: #333;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #0779e4 3px solid;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header .logo {
    float: left;
    margin: 0;
}

header .nav-links {
    float: right;
    margin: 0;
    padding: 0;
    list-style: none;
}

header .nav-links li {
    display: inline;
    padding: 0 20px;
}

.hero {
    min-height: 400px;
    background: url('https://via.placeholder.com/1500x800.png?text=Roll-Off+Dumpster') no-repeat 0 -400px;
    background-size: cover;
    color: #fff;
    text-align: center;
    padding-top: 100px;
}

.hero h2 {
    font-size: 50px;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    color: #fff;
    background: #0779e4;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

.about, .services, .contact {
    padding: 40px 0;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-item {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

#contact-form .form-group {
    margin-bottom: 15px;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.phone-number {
    margin-top: 20px;
    font-weight: bold;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}