/* About Page Styles */

/* Story Section */
.story-section {
    padding: 60px 40px;
    border-radius: 16px;
    margin-bottom: 80px;
}

.section-title {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    text-align: center;
    margin-bottom: 48px;
    color: var(--gray-900);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--gray-600);
}

.story-content p {
    margin-bottom: 20px;
}

.story-content p:last-child {
    margin-bottom: 0;
}

/* Mission Section */
.mission-section {
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    text-align: center;
}

.mission-section p {
    max-width: 700px;
    margin: 0 auto;
    font-size: var(--text-xl);
    line-height: var(--leading-relaxed);
    color: var(--gray-700);
    font-weight: var(--font-medium);
}

/* Responsive Design */
@media (max-width: 768px) {
    .story-section {
        padding: 40px 20px;
    }
    
    .section-title {
        font-size: var(--text-4xl);
        margin-bottom: 32px;
    }
    
    .story-content {
        font-size: var(--text-xl);
        line-height: var(--leading-relaxed);
    }
    
    .story-content p {
        margin-bottom: 24px;
    }
    
    .mission-section {
        padding: 40px 25px;
    }
    
    .mission-section p {
        font-size: var(--text-lg);
    }
}

/* Mobile Portrait (480px - 767px) */
@media (max-width: 767px) {
    .story-section {
        padding: 35px 15px;
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: var(--text-3xl);
        margin-bottom: 28px;
    }
    
    .story-content {
        font-size: var(--text-lg);
        line-height: var(--leading-relaxed);
    }
    
    .story-content p {
        margin-bottom: 20px;
    }
    
    .mission-section {
        padding: 35px 20px;
    }
    
    .mission-section p {
        font-size: var(--text-base);
    }
}

/* Mobile Landscape (320px - 479px) */
@media (max-width: 479px) {
    .story-section {
        padding: 30px 15px;
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: var(--text-3xl);
        margin-bottom: 24px;
    }
    
    .story-content {
        font-size: var(--text-lg);
        line-height: var(--leading-relaxed);
    }
    
    .story-content p {
        margin-bottom: 18px;
    }
    
    .mission-section {
        padding: 30px 15px;
    }
    
    .mission-section p {
        font-size: var(--text-sm);
    }
}

/* Extra Small Mobile (under 320px) */
@media (max-width: 319px) {
    .story-section {
        padding: 25px 10px;
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: var(--text-2xl);
        margin-bottom: 20px;
    }
    
    .story-content {
        font-size: var(--text-base);
        line-height: var(--leading-relaxed);
    }
    
    .story-content p {
        margin-bottom: 16px;
    }
    
    .mission-section {
        padding: 25px 10px;
    }
    
    .mission-section p {
        font-size: var(--text-xs);
    }
}
