.founder {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    padding: 30px;
    gap: 30px;
    flex-direction: column;
}

.founder-image img {
    width: auto;
    display: block;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    max-width: 150px;
    max-height: 150px;
    border-radius: 50%;
}

.founder-header {
    display: flex;
    align-items: center;
    gap: 20px;
}


.founder-name {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: bold;
}

.founder-desc {
    font-size: 20px;
}

.founder-desc p {
    margin: 0;
    padding: 0;
}

@media (max-width: 575.98px) {
    .founder {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
                align-items: center;
    }

        .founder-header {
        flex-direction: column;
        align-items: center;
    }


    .founder-image img {
        max-width: 120px;
        max-height: 120px;
    }

    .founder--text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .founder-name {
        font-size: 24px;
    }

    .founder-desc {
        font-size: 18px;
        text-align: center;
    }
}