/* About Page - Unique Creative Design */

/* Hero Section */
.about-page-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at top left, rgba(220, 20, 60, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(178, 34, 34, 0.02) 0%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    padding: 8rem 0 4rem;
}

/* Decorative Red Elements */
.about-page-hero::before,
.about-page-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    z-index: 0;
}

.about-page-hero::before {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-red) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: floatRed 15s ease-in-out infinite;
}

.about-page-hero::after {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--dark-red) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
    animation: floatRed 18s ease-in-out infinite reverse;
}

@keyframes floatRed {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* Red Accent Lines */
.hero-red-accent {
    position: absolute;
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-red) 50%, transparent 100%);
    opacity: 0.3;
    z-index: 0;
}

.hero-red-accent-1 {
    top: 20%;
    left: 10%;
    transform: rotate(-45deg);
    animation: accentPulse 3s ease-in-out infinite;
}

.hero-red-accent-2 {
    bottom: 25%;
    right: 15%;
    transform: rotate(45deg);
    animation: accentPulse 3s ease-in-out infinite 1.5s;
}

@keyframes accentPulse {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.2);
    }
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.08) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(178, 34, 34, 0.06) 0%, transparent 70%);
    bottom: 15%;
    right: 15%;
    animation-delay: -5s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.06) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: -10s;
}

.shape-4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(178, 34, 34, 0.06) 0%, transparent 70%);
    bottom: 20%;
    left: 20%;
    animation-delay: -15s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }
    75% {
        transform: translate(30px, 50px) scale(1.05);
    }
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-number {
    font-size: 8rem;
    font-weight: 900;
    color: rgba(220, 20, 60, 0.1);
    line-height: 1;
    margin-bottom: -2rem;
    letter-spacing: -0.05em;
}

.about-hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.title-line {
    display: block;
    background: linear-gradient(135deg, var(--primary-red) 0%, rgba(178, 34, 34, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleReveal 1s ease-out backwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
    color: var(--primary-red);
    -webkit-text-fill-color: var(--primary-red);
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, rgba(220, 20, 60, 0.8) 0%, transparent 100%);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* Mission Section */
.about-mission {
    padding: 8rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.about-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(220, 20, 60, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(178, 34, 34, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Red Decorative Circles */
.mission-red-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(220, 20, 60, 0.2);
    z-index: 0;
    pointer-events: none;
}

.mission-red-circle-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    right: 5%;
    animation: rotateCircle 20s linear infinite;
}

.mission-red-circle-2 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 8%;
    animation: rotateCircle 15s linear infinite reverse;
}

.mission-red-circle-3 {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 3%;
    border-style: dashed;
    animation: rotateCircle 25s linear infinite;
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.mission-card {
    position: relative;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.98) 100%);
    border: 1px solid rgba(220, 20, 60, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

/* Red corner accent */
.mission-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 0 24px 0 100%;
}

.mission-card:hover::after {
    opacity: 0.1;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mission-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(220, 20, 60, 0.5);
    box-shadow: 0 20px 60px rgba(220, 20, 60, 0.3);
}

.mission-card:hover::before {
    opacity: 1;
}

.card-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(220, 20, 60, 0.1);
    line-height: 1;
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

.mission-card-2 .card-icon {
    animation-delay: 0.5s;
}

.mission-card-3 .card-icon {
    animation-delay: 1s;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Story Section */
.about-story {
    padding: 8rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Red diagonal lines */
.story-red-line {
    position: absolute;
    width: 2px;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, var(--primary-red) 50%, transparent 100%);
    opacity: 0.2;
    z-index: 0;
}

.story-red-line-1 {
    top: 10%;
    left: 15%;
    transform: rotate(45deg);
}

.story-red-line-2 {
    bottom: 20%;
    right: 12%;
    transform: rotate(-45deg);
}

.story-red-line-3 {
    top: 50%;
    right: 20%;
    height: 150px;
    transform: rotate(30deg);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.story-image-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.05) 0%, rgba(178, 34, 34, 0.05) 100%);
}

.story-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 24px;
    padding: 2rem;
    background: transparent;
}

.story-text {
    position: relative;
}

.story-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.story-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.story-paragraphs p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Features Grid */
.about-features-grid {
    padding: 8rem 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Red decorative squares */
.features-red-square {
    position: absolute;
    border: 2px solid rgba(220, 20, 60, 0.15);
    z-index: 0;
    pointer-events: none;
}

.features-red-square-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    transform: rotate(45deg);
    animation: squareFloat 8s ease-in-out infinite;
}

.features-red-square-2 {
    width: 80px;
    height: 80px;
    bottom: 15%;
    right: 8%;
    transform: rotate(-45deg);
    border-style: dashed;
    animation: squareFloat 10s ease-in-out infinite reverse;
}

@keyframes squareFloat {
    0%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    50% {
        transform: translateY(-20px) rotate(45deg);
    }
}

.features-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.features-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.features-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.feature-item {
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.98) 100%);
    border: 1px solid rgba(220, 20, 60, 0.2);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

/* Red dot accent */
.feature-item::after {
    content: '';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 12px;
    height: 12px;
    background: var(--primary-red);
    border-radius: 50%;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.feature-item:hover::after {
    opacity: 0.8;
    transform: scale(1.5);
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.5);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    border-color: rgba(220, 20, 60, 0.5);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.2);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-icon {
    font-size: 3rem;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

.feature-item:nth-child(2) .feature-icon {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3) .feature-icon {
    animation-delay: 0.4s;
}

.feature-item:nth-child(4) .feature-icon {
    animation-delay: 0.6s;
}

.feature-item:nth-child(5) .feature-icon {
    animation-delay: 0.8s;
}

.feature-item:nth-child(6) .feature-icon {
    animation-delay: 1s;
}

.feature-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Timeline Section */
.about-timeline {
    padding: 8rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Red wave pattern */
.timeline-red-wave {
    position: absolute;
    width: 100%;
    height: 200px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(220, 20, 60, 0.05) 25%, 
        transparent 50%,
        rgba(220, 20, 60, 0.05) 75%,
        transparent 100%);
    top: 20%;
    left: 0;
    opacity: 0.3;
    z-index: 0;
    clip-path: polygon(0 50%, 100% 30%, 100% 70%, 0 50%);
    animation: waveMove 10s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(50px);
    }
}

.timeline-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.timeline-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.timeline-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-red) 0%, rgba(220, 20, 60, 0.3) 100%);
}

.timeline-item {
    position: relative;
    padding-left: 5rem;
    margin-bottom: 4rem;
}

.timeline-marker {
    position: absolute;
    left: 1.5rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: var(--primary-red);
    border: 3px solid #ffffff;
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.4);
}

.timeline-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.98) 100%);
    border: 1px solid rgba(220, 20, 60, 0.2);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.08);
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    border-color: rgba(220, 20, 60, 0.5);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

.timeline-date {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.timeline-event {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.timeline-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* CTA Section */
.about-cta {
    padding: 8rem 0;
    background: 
        radial-gradient(ellipse at top left, rgba(220, 20, 60, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(178, 34, 34, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Red geometric shapes */
.cta-red-shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.cta-red-shape-1 {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 80px solid rgba(220, 20, 60, 0.1);
    top: 15%;
    left: 10%;
    animation: shapeRotate 12s linear infinite;
}

.cta-red-shape-2 {
    width: 60px;
    height: 60px;
    background: rgba(220, 20, 60, 0.1);
    transform: rotate(45deg);
    bottom: 20%;
    right: 12%;
    animation: shapeRotate 15s linear infinite reverse;
}

@keyframes shapeRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(220, 20, 60, 0.08) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Red border accent */
.cta-content::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-red) 50%, transparent 100%);
    z-index: -1;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
    border: 2px solid transparent;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
}

.btn-cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.6);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--text-dark);
    border-color: rgba(220, 20, 60, 0.3);
}

.btn-cta-secondary:hover {
    background: rgba(220, 20, 60, 0.05);
    border-color: rgba(220, 20, 60, 0.5);
    color: var(--primary-red);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-image-wrapper {
        order: -1;
    }
    
    .mission-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-page-hero {
        min-height: 80vh;
        padding: 6rem 0 3rem;
    }
    
    .hero-number {
        font-size: 5rem;
    }
    
    .mission-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 1rem;
    }
    
    .timeline-item {
        padding-left: 3.5rem;
    }
    
    .timeline-marker {
        left: 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta {
        width: 100%;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-page-hero {
        padding: 5rem 0 2rem;
    }
    
    .mission-card,
    .feature-item {
        padding: 2rem 1.5rem;
    }
    
    .story-content {
        padding: 0 1rem;
    }
    
    .timeline {
        padding: 0 1rem;
    }
}

