
/* ========================================
   NEW ABOUT PAGE STYLES (RECREATION)
   ======================================== */

/* Main Container for the new About page structure */
.about-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem 6rem;
}

/* Distinct Section Spacing */
.about-distinct-section {
    margin-bottom: 6rem; /* Large spacing between sections */
    opacity: 0.95;
}

.about-distinct-section:last-child {
    margin-bottom: 0;
}

/* Typography Overrides for About Page */
.about-distinct-section h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.about-distinct-section h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--brand-primary);
    margin-top: 0.5rem;
    border-radius: 2px;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* TEAM SECTION STYLES */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.founder-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    text-align: center;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.founder-photo-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: var(--shadow-lg);
}

.founder-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.founder-role {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--brand-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: block;
}

.founder-bio {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-600);
}

/* CTA Section specific style */
.about-cta-box {
    text-align: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    padding: 4rem 2rem;
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.about-cta-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 2rem;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-page-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-distinct-section h2 {
        font-size: 1.75rem;
    }
}
