.section-4 {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 33px;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    letter-spacing: 0;
    padding: 45px 172px;
    margin-top: 0px;
    overflow: hidden;
}
.section-4-button-primary {
    background: #ef7417;
    color: #fff;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 20px;
    font-weight: 600;
    padding: 14px 32px;
    border: none;
    border-radius: 58px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 50px auto 0 auto;
    text-transform: uppercase;
}
.section-4-col {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.section-4-text h3 {
    font-size: 2.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.section-4-text p {
    font-family: "Plus Jakarta Sans";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.352px;
}
.section-4-text {
    flex: 1 1 55%;
}

.section-4-img {
    flex: 0 0 auto;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 420px;
}

.section-4-img img {
    display: block;
    width: 100%;
    height: auto;
}

.section-4-img small {
    display: block;
    width: 100%;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.4;
    color: #444;
    text-align: center;
    white-space: normal;
    overflow-wrap: break-word;
}
@media (max-width: 768px) {
    .section-4-col {
        flex-direction: column;
    }

    .section-4-img {
        margin-left: 0;
        align-items: center;
    }

    .section-4-img small {
        text-align: center;
    }
}

.read-more-row {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0 20px;
}

.read-more-row::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;

    background: linear-gradient(
        90deg,
        rgba(151, 151, 151, 0.05) 0%,
        rgba(65, 65, 65, 0.29) 50%,
        rgba(151, 151, 151, 0.05) 100%
    );
}

.read-more {
    position: relative;
    z-index: 1;

    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 44px;
    border: 1px solid #d0d0d0;
    background: #f9fbf3;
}

.from-founder {
    border-radius: 20px;
    border: 1px solid #b8b8b8;
    background: url("/img/aboutus/bg.png") rgba(211, 211, 211, 0.459) 50% /
        cover no-repeat;
    width: 80%;
    margin: 0 auto;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
    color: #000;
    font-family: "Plus Jakarta Sans";
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 48px */
    letter-spacing: -0.352px;
}
