/* ===== FOUNDER ===== */
.founder-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
}

.founder-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

/* IMAGE */
.founder-image img {
    width: 280px;
    border-radius: 15px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(177, 18, 38, 0.2);
}

/* TEXT */
.founder-content {
    flex: 1;
}

.founder-content h2 {
    font-size: 34px;
    margin: 10px 0;
}

.subtitle {
    color: #b11226;
    margin-bottom: 15px;
}

.founder-content p {
    color: #ccc;
    line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .founder-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .founder-image img {
        width: 220px;
    }
}
