body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.header, .hero {
    background-image: url('hero.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    margin-top: -600px;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    /*border-radius: 10px;*/
}

.btn {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    /*border-radius: 5px;*/
}

.container {
    width: 80%;
    margin: 0 auto;
}

section {
    padding: 50px 0;
    text-align: center;
}

.service-card {
    display: inline-block;
    width: 30%;
    margin: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
}

.service-card img {
    width: 100%;
    height: auto;
}

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

