/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Services Offered */
.handyman-services {
    padding: 50px 20px;
    text-align: center;
}

.handyman-services h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.handyman-service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.handyman-service-item {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.handyman-service-item img {
    width: 100%;
    border-radius: 5px;
}

.handyman-service-item h3 {
    font-size: 22px;
    margin-top: 10px;
}

.handyman-service-item p {
    font-size: 16px;
    color: #555;
}

/* Why Choose Us */
.why-us {
    padding: 50px 20px;
    background: whitesmoke;
    color: black;
}

.why-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.why-text {
    flex: 1;
    max-width: 500px;
}

.why-text h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

.why-text ul {
    list-style: none;
    padding: 0;
}

.why-text li {
    font-size: 18px;
    margin-bottom: 10px;
}

.why-image {
    flex: 1;
    text-align: center;
}

.why-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
}

/* Call to Action */
.cta {
    background: white;
    color: black;
    text-align: center;
    padding: 40px 20px;
}

.cta h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta .btn {
    background: white;
    color: #ff9800;
    font-weight: bold;
}

.cta .btn:hover {
    background: limegreen;
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero {
        height: 250px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 16px;
    }

    .why-content {
        flex-direction: column;
        text-align: center;
    }

    .why-text {
        text-align: center;
    }
}
