.merunky-banner {
    display: flex;
    position: relative;
    justify-content: space-between;
    padding: 3.75rem 2.5rem;
    background-color: #FEF3F4;
    gap: 3.75rem;
}

.left-side {
    flex: 1;
}

.left-side img {
    width: 100%;
    display: block;
    min-height: 100%;
    object-fit: cover;
    max-width: none;
}

.right-side {
    flex: 1;
    width: 31.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
}

.right-side h2 {
    font-size: 1.7rem;
    line-height: 2rem;
    margin: 2rem 0 1rem 0;
    color: #20421B;
    font-weight: 700;
}

.right-side p {
    font-size: 1rem;
    line-height: 1.6rem;
    color: #20421B !important;
    margin-bottom: 2rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-block;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.social-icon img {
    width: 30px;
    height: auto;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    color: inherit !important;
    background-color: transparent !important;
}

.social-icon img {
    width: 2.5rem;
    height: auto;
    transition: transform 0.3s ease;
}

.social-icon:hover img {
    transform: scale(1.1) !important;
}

.social-link {
    color: #20421B !important;
    text-decoration: underline;
}

.social-link:hover {
    color: #20421B !important;
}

.merunky-text {
    padding-right: 10rem;
}

.orange-circle {
    position: absolute;
    bottom: -3.5rem;
    right: 6rem;
    background-color: #E54F18;
    border-radius:50%;
    z-index: 1;
    width:7rem;
    height:7rem;
}

@media screen and (max-width: 768px) {
    .merunky-banner {
        flex-direction: column;
padding: 2rem 1rem;
gap: 0rem;
    }

    .merunky-text {
        padding: 0;
    }

    .right-side {
        margin: auto;
        width: 100%;
    }

    .social-icons {
        justify-content: center;
    }

    .orange-circle {
        position: absolute;
        width: 4rem;
        height: 4rem;
        right: 1.5rem;
        bottom: -2rem;
    }

    .left-side img {
        margin-bottom: 20px;
    }
}