.about-hero{

    padding:120px 0;

    background:
            linear-gradient(
                    135deg,
                    #fff7ec,
                    #ffffff
            );
}

.about-hero-content{

    max-width:900px;

    margin:auto;

    text-align:center;
}

.hero-tag{

    display:inline-block;

    padding:8px 20px;

    border-radius:50px;

    background:#fff2e8;

    color:#ff7a45;

    margin-bottom:25px;
}

.about-hero h1{

    font-size:60px;

    margin-bottom:25px;
}

.about-hero p{

    font-size:20px;

    color:#666;
}

.story-grid{

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:60px;

    align-items:center;
}

.story-content h2{

    font-size:42px;

    margin-bottom:25px;
}

.story-content p{

    margin-bottom:20px;

    color:#666;
}

.story-image img{

    border-radius:24px;

    box-shadow:
            0 20px 50px rgba(0,0,0,.1);
}

.mission-section,
.vision-section{

    background:#fafafa;
}

.mission-card,
.vision-card{

    max-width:900px;

    margin:auto;

    background:#fff;

    padding:50px;

    border-radius:24px;

    text-align:center;

    box-shadow:
            0 10px 30px rgba(0,0,0,.08);
}

.mission-card h3,
.vision-card h3{

    font-size:36px;

    margin-bottom:20px;
}

.value-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;
}

.value-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    box-shadow:
            0 8px 20px rgba(0,0,0,.06);
}

.value-card h3{

    margin-bottom:15px;
}

.stats-section{

    background:
            linear-gradient(
                    135deg,
                    #ff9f43,
                    #ff6b6b
            );

    color:#fff;
}

.stats-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    text-align:center;
}

.stats-grid h2{

    font-size:52px;

    margin-bottom:10px;
}

.about-cta{

    padding:120px 0;

    background:#111;

    text-align:center;

    color:#fff;
}

.about-cta h2{

    font-size:48px;

    margin-bottom:20px;
}

.about-cta p{

    margin-bottom:35px;

    color:#ccc;
}

@media(max-width:768px){

    .about-hero h1{

        font-size:38px;
    }

    .about-hero p{

        font-size:16px;
    }

    .story-grid{

        grid-template-columns:1fr;
    }

    .value-grid,
    .stats-grid{

        grid-template-columns:1fr;
    }

    .mission-card,
    .vision-card{

        padding:30px;
    }

    .about-cta h2{

        font-size:30px;
    }

}