@charset "utf-8";

:root{
    --dark:#454B60;
    --blue:#006FFF;
    --off:#F4F6FC;
    --white:#ffffff;
}

body{
    margin:0;
    font-family:'Montserrat',sans-serif;
    background:var(--off);
    color:var(--dark);
    line-height:1.7;
}

.container{
    max-width:1200px;
    margin:auto;
    padding:0 24px;
}

.about-hero{
    padding:180px 0 50px;
    text-align:center;
}

.about-tag{
    display:inline-block;
    background:#fff;
    padding:10px 18px;
    border-radius:100px;
    font-weight:700;
    margin-bottom:25px;
}

.about-hero h1{
    font-size:clamp(55px,8vw,110px);
    line-height:1;
    font-weight:900;
    margin:0;
}

.about-hero h1 span{
    color:var(--blue);
}

.hero-intro{
    max-width:700px;
    margin:35px auto 0;
    font-size:20px;
}

.story-section,
.timeline-section,
.mission-section,
.closing-section{
    padding:100px 0;
}

.story-grid{
    display:grid;
    grid-template-columns:1fr 1.3fr;
    gap:60px;
}

.section-label{
    color:var(--blue);
    font-size: 16px;
    font-weight: 600;
    letter-spacing:2px;
}

.story-section h2,
.center-heading h2,
.mission-box h2,
.closing-section h2{
    font-size:clamp(34px,4vw,58px);
    font-weight:900;
    line-height:1;
    margin-top:15px;
}

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



.why-section{
    background:#fff;
    padding:100px 0;
}

.center-heading{
    text-align:center;
    margin-bottom:60px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-card{
    background:var(--off);
    border-radius:20px;
    padding:40px;
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-6px);
}

.why-icon{
    font-size:42px;
    margin-bottom:20px;
}

.why-card h3{
    margin-bottom:15px;
}

.timeline{
    max-width:900px;
    margin:auto;
}

.timeline-item{
    background:#fff;
    border-radius:20px;
    padding:40px;
    margin-bottom:25px;
}

.year{
    color:var(--blue);
    font-weight:900;
    display:block;
    margin-bottom:10px;
}

.mission-box{
    background:var(--blue);
    color:#fff;
    border-radius:30px;
    padding:80px;
    text-align:center;
}

.mission-box .section-label{
    color:rgba(255,255,255,.8);
}

h2.abwilbl {
	color: #fff;
}

p.secisubi, p.secisubiswrt {
	color: #fff;
    margin: 0 auto;
    padding-top: 30px;
}

p.secisubiswrt {
	color: var(--dark);
}

.closing-section{
    text-align:center;
	padding: 0 0 100px;
}

.about-btn{
    display:inline-block;
    margin-top:30px;
    background:var(--blue);
    color:#fff;
    padding:16px 35px;
    border-radius:100px;
    font-weight:800;
    text-decoration:none;
}

@media(max-width:900px){

    .story-grid{
        grid-template-columns:1fr;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

    .mission-box{
        padding:50px 30px;
    }
}
