/* Modern About Page Styles */

:root {
    --primary-purple: #8B5CF6;
    --primary-dark: #7C3AED;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --border-light: #E5E7EB;
}

/* Hero Section */
.about-hero {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, #EC4899 100%);
    color: white;
    border-radius: 20px;
    margin-bottom: 40px;
}

.about-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Story Section */
.about-story {
    margin-bottom: 60px;
}

.story-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.story-header {
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 2px solid var(--border-light);
}

.story-header i {
    font-size: 2rem;
    color: var(--primary-purple);
}

.story-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.story-content {
    padding: 40px;
}

.story-text {
    margin-bottom: 40px;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.story-text strong {
    color: var(--primary-purple);
    font-weight: 700;
}

/* Highlights */
.story-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.highlight-item {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.15);
    border-color: var(--primary-purple);
}

.highlight-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, #EC4899 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.8rem;
    color: white;
}

.highlight-content h3 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin-bottom: 4px;
}

.highlight-content p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-hero {
        padding: 50px 20px 35px;
        margin-bottom: 32px;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero p {
        font-size: 1.1rem;
    }

    .story-header {
        padding: 24px;
    }

    .story-header h2 {
        font-size: 1.75rem;
    }

    .story-content {
        padding: 32px 24px;
    }

    .story-text p {
        font-size: 1rem;
    }

    .story-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .about-hero {
        padding: 40px 16px 30px;
        margin-bottom: 24px;
        border-radius: 16px;
    }

    .about-hero h1 {
        font-size: 1.75rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .story-card {
        border-radius: 16px;
    }

    .story-header {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .story-header i {
        font-size: 1.75rem;
    }

    .story-header h2 {
        font-size: 1.5rem;
    }

    .story-content {
        padding: 24px 20px;
    }

    .story-text {
        margin-bottom: 32px;
    }

    .story-text p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .highlight-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .highlight-icon {
        width: 56px;
        height: 56px;
    }

    .highlight-icon i {
        font-size: 1.5rem;
    }

    .highlight-content h3 {
        font-size: 0.85rem;
    }

    .highlight-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.5rem;
    }

    .about-hero p {
        font-size: 0.9rem;
    }

    .story-header h2 {
        font-size: 1.25rem;
    }

    .story-text p {
        font-size: 0.9rem;
    }
}