.founder-section {
    background-color: #52504e;
    padding: 150px 0 150px;
    color: #ffffff;
    min-height: 100vh;
}

.founder-image-container {
    position: relative;
    margin-bottom: 30px;
    margin-top: 0px;
}

.founder-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px; /* Adding curve to match home page */
}

.founder-name-box {
    background-color: var(--primary-color);
    padding: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    transform: translateY(50%);
    border-radius: 0 12px 12px 0; /* Adding curve to the name box as well */
}

.founder-name-box h3 {
    color: #ffffff;
    font-size: 2rem;
    margin: 0;
    line-height: 1.2;
}

.founder-name-box p {
    color: rgba(255, 255, 255, 0.8);
    margin: 10px 0 0;
    font-size: 1rem;
}

.founder-text h3 {
    color: var(--accent-color);
    margin: 2.5rem 0 1.5rem;
    font-size: 1.6rem;
    word-spacing: 0.4rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.founder-text h3:first-child {
    margin-top: 0;
}

.founder-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #ffffff;
}

.founder-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.founder-quotes .quote {
    margin-bottom: 30px;
}

.founder-quotes .quote i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color) !important;
}

.founder-quotes .quote p.text-muted {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.6) !important;
}

.founder-quotes .quote p.quote-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}



@media (max-width: 991px) {
    .founder-name-box {
        position: relative;
        transform: none;
        width: 100%;
        margin-top: -50px;
    }

    .founder-content {
        margin-top: 50px;
    }
}