/* About Page Specific Styles */

.founder-img {
    border-radius: 20px;
    border: 5px solid white;
    /* box-shadow: var(--shadow-lg); */
}

.timeline-step {
    position: relative;
    padding-left: 30px;
    margin-bottom: 2rem;
    border-left: 3px solid var(--secondary-color);
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--secondary-color);
}

.value-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.value-card:hover {
    border-bottom-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.legal-section {
    background: #f1f2f6;
    border-radius: 16px;
    padding: 3rem;
    margin-top: 3rem;
}


