.home .banner {
    margin: 0;
    padding: 2rem 0;
    background-image: url("../images/home/banner-7daf57913f34b6923d1939ded0c4111c.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.home .banner .container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.home .banner__content {
    width: 100%;
}

.home .banner__hero img {
    width: 100%;
}

@media (min-width: 1200px) {
    .home .banner {
        padding: 3rem 0;
    }

    .home .banner .container {
        flex-direction: row;
        justify-content: space-between;
    }

    .home .banner__content {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .home .banner__hero {
        width: 45%;
    }
}

@media (min-width: 1400px) {
    .home .banner {
        padding: 4rem 0;
    }

    .home .banner__content {
        width: 40%;
    }

    .home .banner__hero {
        width: 50%;
    }
}

/* Services Section */
.service {
    margin: 2.5rem 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.service:first-child {
    margin-top: 0;
}

.service:last-child {
    margin-bottom: 0;
}

.service__image {
    width: 100%;
    max-width: 380px;
    height: auto;
}

.service__content {
    background-color: white;
    text-align: center;
    position: relative;
}

@media (min-width: 576px) {
    .service__content {
        max-width: 75%;
    }
}

@media (min-width: 992px) {
    .service {
        flex-direction: row;
        justify-content: center;
        position: relative;
    }

    .service__content {
        padding: 3rem 2rem;
        width: 50%;
        position: absolute;
    }

    .service:not(.reverse) .service__content {
        left: 45%;
        text-align: left;
    }

    .service.reverse .service__content {
        right: 45%;
        text-align: right;
    }

    .service__image {
        width: 55%;
        height: auto;
        max-width: unset;
        transform: translateX(-50%);
    }

    .service.reverse .service__image {
        transform: translateX(50%);
    }
}

@media (min-width: 1200px) {
    .service__image {
        width: 40%;
    }
}

@media (min-width: 1400px) {
    .service__content {
        padding: 4rem 4.5rem;
        width: 45%;
    }
}

/* Gallery Section */
.gallery__items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .gallery {
        padding-top: 1.5rem;
        padding-bottom: 2.4rem;
    }

    .gallery__items {
        margin: 0 auto;
        width: 95%;
        flex-direction: row;
        justify-content: stretch;
        gap: 2rem;
    }
}

/* Features Section */
.features__list {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
}

@media (min-width: 576px) {
    .features__list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .feature {
        width: 45%;
    }
}

@media (min-width: 1200px) {
    .features__list {
        gap: 1.5rem;
    }

    .feature {
        width: calc(33.33% - 2*1.5rem);
    }
}

@media (min-width: 1400px) {
    .features__list {
        flex-wrap: nowrap;
    }

    .feature {
        width: calc(100% / 6);
    }
}

.feature .icon {
    color: #19a323;
    font-size: 2.8rem;
}

.about__container {
    margin: 0 auto;
}

@media (min-width: 992px) {
    .about__container {
        width: 90%;
    }
}

@media (min-width: 1200px) {
    .about__container {
        width: 85%;
    }
}