.founder-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 100%);
    position: relative;
}

.founder-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

.founder-image {
    text-align: center;
}

.image-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border: 3px solid rgba(229, 199, 56, 0.3);
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(229, 199, 56, 0.2);
    position: relative;
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-info h3 {
    color: var(--wfs-white);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.founder-title {
    color: var(--wfs-yellow);
    font-weight: 600;
    margin-bottom: 5px;
}

.founder-company {
    color: var(--wfs-light-gray);
    font-size: 0.9rem;
}

.founder-story .lead {
    font-size: 1.2rem;
    color: var(--wfs-light-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.founder-quote {
    padding: 30px;
    background: rgba(229, 199, 56, 0.03);
    border-left: 3px solid var(--wfs-yellow);
    border-radius: 10px;
    margin: 40px 0;
    font-size: 1.1rem;
    color: var(--wfs-white);
    font-style: italic;
}

.founder-quote cite {
    display: block;
    margin-top: 15px;
    color: var(--wfs-yellow);
    font-style: normal;
    font-weight: 600;
}

.achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(229, 199, 56, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(229, 199, 56, 0.1);
}

.achievement-icon {
    font-size: 2rem;
}

.achievement-text strong {
    display: block;
    color: var(--wfs-yellow);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.achievement-text span {
    color: var(--wfs-light-gray);
    font-size: 0.9rem;
}

.timeline {
    margin-top: 80px;
}

.timeline-title {
    text-align: center;
    color: var(--wfs-white);
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.timeline-item {
    text-align: center;
    padding: 30px;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(229, 199, 56, 0.1);
    transition: all 0.3s;
}

.timeline-item:hover {
    transform: translateY(-5px);
    border-color: var(--wfs-yellow);
    background: rgba(229, 199, 56, 0.03);
}

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--wfs-yellow);
    margin-bottom: 15px;
}

.timeline-content h4 {
    color: var(--wfs-white);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--wfs-light-gray);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .founder-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .achievements {
        grid-template-columns: 1fr;
    }
}
