section.about_us {
    padding-bottom: 0;

    .content {
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }


}

section.what_we_do_best {
    img {
        max-height: 500px;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        object-fit: cover;
        object-position: top;
        width: 100%;
    }

    .content {
        h2 {
            margin-bottom: 24px;
        }
    }

    .flex {
        gap: 30px;
        justify-content: space-between;

        >div {
            width: calc(50% - 15px);

            @media (max-width: 1024px) {
                width: 100%;
            }
        }
    }

    ul {
        display: flex;
        flex-direction: column;
        gap: 10px 0;

        li {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 0 10px;

            span {
                font-family: 'Inter', sans-serif;
            }
        }

        span.icon {
            border-radius: 50%;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
            background-color: red;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
    }
}

section.where_you_find_us {
    .flex {
        justify-content: space-between;
        gap: 30px;

        >div {
            width: calc(50% - 15px);

            @media (max-width: 1024px) {
                width: 100%;

            }
        }
    }

    .desktop {
        @media (max-width: 1024px) {
            display: none;
        }
    }

    .tablet {
        display: none;
        margin: 30px 0;

        @media (max-width: 1024px) {
            display: block;
        }
    }

    iframe {
        width: 100%;
    }
}

section.book_dry_cleaning {
    .content {
        background: linear-gradient(135deg, #c41e3a 0%, #8b1428 100%);
        padding: 100px 50px;
        border-radius: 40px;
        -webkit-border-radius: 40px;
        -moz-border-radius: 40px;
        -ms-border-radius: 40px;
        -o-border-radius: 40px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;

        @media (max-width: 1200px) {
            padding: 70px 30px;
        }

        @media (max-width: 767px) {
            padding: 50px 20px;
            border-radius: 20px;
            -webkit-border-radius: 20px;
            -moz-border-radius: 20px;
            -ms-border-radius: 20px;
            -o-border-radius: 20px;
        }

        h2,
        p {
            color: white;
            text-align: center;
        }

        p {
            margin-bottom: 30px;
        }

        .group_button {
            display: flex;
            align-items: center;
            gap: 0 15px;
            justify-content: center;

            a {
                padding: 10px 24px;
                border-radius: 10px;
                -webkit-border-radius: 10px;
                -moz-border-radius: 10px;
                -ms-border-radius: 10px;
                -o-border-radius: 10px;
                font-family: 'Inter', sans-serif;
                text-decoration: none;
            }
        }
    }
}