* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.banner {
    position: relative;
    width: 300px;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s;
}

.banner:hover {
    transform: scale(1.05);
}

.banner a {
    display: block;
    width: 100%;
    height: 100%;
    color: white;
    text-decoration: none;
}

.banner-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 10px;
    border-radius: 5px;
}

.banner img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.banner h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.banner p {
    font-size: 16px;
}

#service1 {
    background: url('images/service1.png') no-repeat center center/cover;
}

#service2 {
    background: url('images/service2.png') no-repeat center center/cover;
}

#service3 {
    background: url('images/service3.png') no-repeat center center/cover;
}

#service4 {
    background: url('images/service4.png') no-repeat center center/cover;
}

@media (max-width: 768px) {
    .banner {
        width: 100%;
        height: 150px;
    }

    .banner-content h2 {
        font-size: 20px;
    }

    .banner-content p {
        font-size: 14px;
    }
}
