/* About Page Specific Styles - Optimized for Elderly Readability */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.about-hero h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: -0.5px;
}

.about-hero .subtitle {
    font-size: 1.375rem; /* 22px - larger for elderly */
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

/* Author Image Card */
.author-image {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    position: sticky;
    top: 100px;
}

.author-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.author-info h3 {
    font-size: 1.375rem; /* 22px */
    color: #1F2937;
    margin-bottom: 8px;
    font-weight: 600;
}

.author-info p {
    font-size: 1.125rem; /* 18px */
    color: #6B7280;
    margin: 0;
}

/* Story Text */
.story-text {
    font-size: 1.125rem; /* 18px base font for elderly readability */
    line-height: 1.8;
    color: #374151;
}

.story-text h2 {
    font-size: 2.25rem; /* 36px */
    color: #1F2937;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: left;
}

.story-text h3 {
    font-size: 1.75rem; /* 28px */
    color: #1F2937;
    margin: 40px 0 20px;
    font-weight: 600;
}

.story-text p {
    font-size: 1.125rem; /* 18px */
    line-height: 1.8;
    color: #374151;
    margin-bottom: 20px;
}

.story-text strong {
    color: #1F2937;
    font-weight: 600;
}

.story-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.story-text ul li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 16px;
    font-size: 1.125rem; /* 18px */
    line-height: 1.6;
    color: #374151;
}

.story-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    background: #10B981;
    border-radius: 50%;
}

.story-text ul li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 11px;
    width: 10px;
    height: 6px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
}

.signature {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #E5E7EB;
    font-style: italic;
    color: #6B7280;
    font-size: 1.125rem;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: #F9FAFB;
}

.mission-section h2 {
    font-size: 2.5rem;
    color: #1F2937;
    margin-bottom: 50px;
    text-align: center;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.mission-item {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin: 0 auto 20px;
    display: block;
}

.mission-item h3 {
    font-size: 1.5rem; /* 24px */
    color: #1F2937;
    margin-bottom: 15px;
    font-weight: 600;
}

.mission-item p {
    font-size: 1.125rem; /* 18px */
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

/* Impact Section */
.impact-section {
    padding: 80px 0;
    background: white;
}

.impact-section h2 {
    font-size: 2.5rem;
    color: #1F2937;
    margin-bottom: 50px;
    text-align: center;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #F9FAFB, #F3F4F6);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-card .stat-number {
    display: block;
    font-size: 2.5rem; /* 40px - large for impact */
    font-weight: 700;
    color: #4F46E5;
    margin-bottom: 10px;
}

.stat-card .stat-label {
    font-size: 1.125rem; /* 18px */
    color: #4B5563;
    font-weight: 500;
}

/* CTA Section */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
    text-align: center;
    color: white;
}

.about-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 1.25rem; /* 20px */
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta .btn-large {
    font-size: 1.25rem; /* 20px */
    padding: 18px 40px;
    min-height: 56px; /* Large tap target for elderly */
    display: inline-block;
    background: white;
    color: #4F46E5;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-cta .btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.guarantee {
    margin-top: 20px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile Responsive - Single Column for Better Readability */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero .subtitle {
        font-size: 1.25rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .author-image {
        position: static;
        max-width: 300px;
        margin: 0 auto;
    }

    .story-text h2 {
        font-size: 1.875rem;
        text-align: center;
    }

    .story-text h3 {
        font-size: 1.5rem;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-card .stat-number {
        font-size: 2rem;
    }

    .about-cta h2 {
        font-size: 2rem;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .story-text p,
    .story-text li {
        color: #111827;
    }

    .mission-item {
        border: 2px solid #1F2937;
    }

    .stat-card {
        border: 2px solid #4F46E5;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .mission-item,
    .stat-card,
    .about-cta .btn-large {
        transition: none;
    }
}