*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:'Inter',sans-serif;

background:#f8fbff;

color:#333;

line-height:1.8;

}

.icon i{
    font-size: 48px;
    color: #0d9488;
}
.container{

width:90%;

max-width:1200px;

margin:auto;

}

section{

padding:90px 0;

}

.about-hero{

background:linear-gradient(135deg,#005f73,#0a9396);

color:white;

text-align:center;

}

.about-hero h1{

font-size:54px;

margin-bottom:20px;

font-weight:800;

}

.about-hero p{

font-size:20px;

max-width:900px;

margin:auto;

opacity:.9;

}

.two-column{

display:flex;

align-items:center;

gap:80px;

}

.two-column img{

width:100%;

border-radius:20px;

box-shadow:0 20px 60px rgba(0,0,0,.15);

}

.two-column h2{

font-size:42px;

margin-bottom:20px;

color:#005f73;

}

.cards{

display:grid;

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

gap:30px;

}

.card{

background:white;

padding:40px;

text-align:center;

border-radius:20px;

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

transition:.3s;

}

.card:hover{

transform:translateY(-10px);

}

.icon{

font-size:50px;

margin-bottom:20px;

}

.timeline{

background:white;

}

.timeline h2{

text-align:center;

margin-bottom:60px;

font-size:42px;

}

.timeline-item{

display:flex;

gap:40px;

margin-bottom:40px;

}

.year{

background:#005f73;

color:white;

padding:15px 25px;

border-radius:10px;

font-weight:bold;

min-width:90px;

text-align:center;

}

.stats{

background:#005f73;

color:white;

}

.stat-grid{

display:grid;

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

text-align:center;

gap:30px;

}

.stat-grid h2{

font-size:48px;

margin-bottom:10px;

}

.cta{

text-align:center;

background:#eef8fb;

}

.cta h2{

font-size:42px;

margin-bottom:20px;

}

.btn{

display:inline-block;

padding:16px 36px;

background:#005f73;

color:white;

text-decoration:none;

border-radius:8px;

margin-top:20px;

font-weight:600;

transition:.3s;

}

.btn:hover{

background:#0a9396;

}

@media(max-width:900px){

.two-column{

flex-direction:column;

}

.cards{

grid-template-columns:1fr;

}

.stat-grid{

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

}

.about-hero h1{

font-size:40px;

}

}

@media(max-width:600px){

.stat-grid{

grid-template-columns:1fr;

}

.about-hero h1{

font-size:32px;

}

}