/* About page specific styles */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1A9B96 100%);
    color: white;
    padding: calc(var(--spacing-xxl) + 60px) 0 var(--spacing-xxl) 0;
    text-align: center;
}

.founder-story {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.founder-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #1A9B96);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    margin: 0 auto 2rem auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover { transform: translateY(-5px); }

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #1A9B96);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem auto;
}

.timeline { position: relative; margin: 3rem 0; max-width: 1000px; margin-left: auto; margin-right: auto; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--primary-color); transform: translateX(-50%); }
.timeline-item { position: relative; margin-bottom: 4rem; width: 100%; }
.timeline-content { background: white; border-radius: 12px; padding: 2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.1); width: 45%; position: relative; }
.timeline-item:nth-child(odd) .timeline-content { margin-left: 0; margin-right: auto; }
.timeline-item:nth-child(even) .timeline-content { margin-left: auto; margin-right: 0; }
.timeline-dot { position: absolute; left: 50%; top: 2rem; width: 20px; height: 20px; background: var(--primary-color); border-radius: 50%; transform: translateX(-50%); border: 4px solid white; box-shadow: 0 0 0 4px var(--primary-color); z-index: 10; }
.timeline-year { font-size: 1.2rem; font-weight: bold; color: var(--primary-color); margin-bottom: 0.5rem; }

@media (max-width: 768px) {
    .founder-story { padding: 2rem; }
    .timeline::before { left: 2rem; }
    .timeline-item { flex-direction: column !important; }
    .timeline-content { width: calc(100% - 4rem); margin-left: 4rem !important; margin-right: 0 !important; }
    .timeline-dot { left: 2rem; }
    /* Stats section mobile CSS removed - See REMOVED_SECTIONS.md for restoration */
}






