body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: green;
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

html, body {
    height: 100%;
}

.hero {
    text-align: center;
    padding: 100px 20px;
}

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

.hero h2 {
    font-size: 1.5em;
    margin: 10px 0;
}

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

.hero button {
    background: #0a0;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
}

.hero button:hover {
    background: #090;
}

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

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 20px 0;
}

.service {
    display: flex;
    align-items: center;
    margin: 20px;
    background: #444;
    padding: 20px;
    border-radius: 10px;
    width: 45%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service img {
    max-width: 100px;
    margin-right: 20px;
}

.service-content {
    text-align: left;
}

.service-content h2 {
    margin: 0;
    font-size: 1.5em;
    color: #fff;
}

.service-content p {
    margin: 5px 0;
    color: #ddd;
}

.service-content button {
    background: #0a0;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
}

.service-content button:hover {
    background: #090;
}

.testimonials {
    background: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
    color: #333;
}

.testimonial {
    font-style: italic;
}

.testimonial p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    .services {
        flex-direction: column;
        align-items: center;
    }
    .service {
        width: 90%;
        margin: 10px 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .service img {
        margin: 0 0 10px 0;
    }
    .service-content {
        text-align: center;
    }
}

/* Footer Styles */
.footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    position: relative;
    bottom: 0;
    left: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

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

.footer-links, .footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 10px 0;
}
