.founder-section {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    padding-top: 60px;
}

.founder-img-col {
    flex: 1;
    max-width: 450px;
}

.founder-photo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}

.founder-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.note-label {
    color: #C19A6B;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.quote-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #000;
}

.founder-name {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111;
    margin-bottom: 25px;
}

.founder-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

@media (max-width: 1024px) {
    .founder-section {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding-top: 20px;
    }

    .quote-title {
        font-size: 21px;
        margin-bottom: 10px;
    }

    .founder-name {
        font-size: 12px;
        margin-bottom: 15px;
    }
}