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

.hero {
    background: url('https://media.istockphoto.com/id/1172013285/photo/workman-using-pneumatic-nail-gun-install-tile-on-roof-of-new-house-under-construction.jpg?s=612x612&w=0&k=20&c=5-9vPCpGwYoh5ylnswUV0xuFQr4dk3E36I2KhsJQ6M8=') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}



.hero h1 {
    font-size: 3rem;
    margin: 0;
}

.hero p {
    font-size: 1.2rem;
    margin: 20px 0;
}

.contact-button {
    background: #007BFF;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-button:hover {
    background: #0056b3;
}

.services {
    padding: 50px 20px;
    text-align: center;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

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

.service img {
    width: 100%;
    border-radius: 10px;
}

.service h3 {
    margin: 10px 0;
}

.footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
}

.footer address,
.footer a {
    color: #007BFF;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.why-choose-us {
    background: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.why-choose-us p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
}

.why-choose-us ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-us ul li {
    margin: 10px 0;
    font-size: 1rem;
    color: #333;
}

.why-choose-us ul li strong {
    color: #007BFF;
}