.estudo-founder-section {
    width: 100%;
    box-sizing: border-box;
    padding: 40px 0;
}

.estudo-founder-top-divider {
    width: 100%;
    border-top: 1px solid;
    margin-bottom: 50px;
}

.estudo-founder-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px;
    padding: 60px;
    box-sizing: border-box;
    gap: 50px;
    width: 100%;
}

.founder-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.founder-subheading {
    font-size: 14px;
    margin: 0;
}

.founder-heading {
    margin: 0;
    font-family: 'Times New Roman', serif;
    font-size: 3rem;
    font-weight: normal;
    line-height: 1.1;
}

.founder-desc {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.founder-desc p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.founder-signature {
    font-size: 16px;
    margin-top: 10px;
}

.founder-image-col {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-image-wrap {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
}

.founder-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 991px) {
    .estudo-founder-card {
        flex-direction: column;
        padding: 30px;
    }
    
    .founder-image-col {
        width: 100%;
    }
    
    .founder-heading {
        font-size: 2.2rem;
    }
}