.custom-about-us-section {
    border-radius: 16px;
    background: var(--Gradient-Light-Green, linear-gradient(110deg, #EBF2EF 1.69%, rgba(235, 242, 239, 0.00) 98.8%));
}

.custom-about-us-section .container {
    padding: 0;
}

.custom-about-us-section__area {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 112px 64px;
    position: relative;
}

.custom-decor-upper {
    position: absolute;
    top: 0;
    right: 0;
}

.custom-decor-lower {
    position: absolute;
    bottom: 0;
    right: 0;
}

.custom-about-us-section__image {
    width: 50%;
}

.custom-about-us-section__image img {
    width: 100%;
    margin-bottom: 0 !important;
    border-radius: 16px;
}

.custom-about-us-section__info {
    max-width: 480px;
}

.custom-about-us-section__title {
    margin-bottom: 24px;
}

.custom-about-us-section__button {
    display: inline-block;
    margin-top: 48px;
    border-radius: 8px;
    background: #88B04B;
    padding: 12px 24px;
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    line-height: 25.2px;
}

.custom-about-us-section__button:hover {
    background: #FFF;
    color: #88B04B;
}

@media (max-width: 1199px) {
    .custom-about-us-section__area {
        gap: 16px;
    }
}

@media (max-width: 991px) {
    .custom-about-us-section__area {
        flex-direction: column;
        gap: 32px;
        padding: 64px 16px;
    }

    .custom-about-us-section__image {
        width: 100%;
    }

    .custom-about-us-section__image img {
        vertical-align: bottom;
    }
}

@media (max-width: 767px) {
    .custom-about-us-section {
        border-radius: 0;
    }

    .custom-about-us-section__button {
        width: 100%;
        text-align: center;
    }
}