.founder-section {
    background: #f5f7fa;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.founder-image {
    flex: 1 1 100%;
    max-width: 400px;
    width: 100%;
    overflow: hidden;
    text-align: center;
}

.founder-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.founder-content {
    flex: 1 1 100%;
    padding: 40px;
    text-align: center;
}

.founder-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}

.founder-content h3 {
    font-size: 22px;
    color: #0077cc;
    margin-bottom: 15px;
}

.founder-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Responsive Fixes */
@media (min-width: 768px) {
    .founder-container {
        flex-direction: row;
    }

    .founder-image, .founder-content {
        flex: 1 1 50%;
        text-align: left;
    }

    .founder-content {
        padding: 40px 60px;
    }
}
