/* Founder Section Styles */
.founder-section {
    padding: 80px 0;
    background: #050505;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.founder-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
}

.founder-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.founder-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.founder-content h2 {
    font-family: var(--head);
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.founder-content .founder-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--emerald-bright);
    margin-bottom: 24px;
}

.founder-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--muted-light);
    max-width: 600px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .founder-image-wrapper {
        margin: 0 auto;
        max-width: 250px;
    }

    .founder-content h2 {
        font-size: 2rem;
    }

    .founder-content .founder-title {
        font-size: 1rem;
    }

    .founder-content p {
        font-size: 1rem;
        max-width: 100%;
    }
}idth: 600px;
}