
body{
  background:#f7f9ff;
  color:#222;
}

/* HERO */
.about-hero{
  min-height:90vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:90px 8%;
  background:linear-gradient(120deg,#ffffff,#eef3ff);
}

.about-hero-text{
  width:50%;
}

.about-hero-text img{
  width:90px;
  margin-bottom:20px;
}

.about-hero-text h1{
  font-size:52px;
  line-height:1.2;
  margin-bottom:18px;
}

.about-hero-text p{
  font-size:18px;
  color:#555;
  max-width:520px;
}

.about-hero-img{
  width:45%;
}

.about-hero-img img{
  width:100%;
  border-radius:28px;
  box-shadow:0 30px 60px rgba(0,0,0,0.15);
}

/* STORY */
.story{
  padding:100px 8%;
  display:flex;
  gap:60px;
  align-items:center;
}

.story img{
  width:45%;
  border-radius:24px;
}

.story-text{
  width:55%;
}

.story-text h2{
  font-size:40px;
  margin-bottom:16px;
}

.story-text p{
  font-size:17px;
  color:#555;
  line-height:1.7;
}

/* VALUES */
.values{
  padding:110px 8%;
  background:white;
  text-align:center;
}

.values h2{
  font-size:42px;
  margin-bottom:60px;
}

.values-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.value-card{
  background:#f6f9ff;
  padding:40px 30px;
  border-radius:24px;
  box-shadow:0 20px 40px rgba(0,0,0,0.06);
  transition:.3s;
}

.value-card:hover{
  transform:translateY(-6px);
}

.value-card img{
  width:60px;
  margin-bottom:18px;
}

.value-card h3{
  font-size:20px;
  margin-bottom:10px;
}

.value-card p{
  font-size:15px;
  color:#666;
}

/* TIMELINE */
.timeline{
  padding:110px 8%;
}

.timeline h2{
  text-align:center;
  font-size:42px;
  margin-bottom:70px;
}

.timeline-line{
  max-width:900px;
  margin:auto;
}

.step{
  display:flex;
  gap:30px;
  margin-bottom:50px;
}

.step span{
  width:50px;
  height:50px;
  border-radius:50%;
  background:#3b5bff;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
}

.step p{
  max-width:600px;
  color:#555;
  line-height:1.7;
}

/* TEAM */
.team{
  padding:110px 8%;
  background:white;
  text-align:center;
}

.team h2{
  font-size:42px;
  margin-bottom:60px;
}

.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:30px;
}

.team-card{
  background:#f7f9ff;
  padding:40px 25px;
  border-radius:24px;
  box-shadow:0 20px 40px rgba(0,0,0,0.07);
}

.team-card img{
  width:90px;
  border-radius:50%;
  margin-bottom:18px;
}

.team-card h4{
  font-size:18px;
}

.team-card span{
  font-size:14px;
  color:#666;
}

/* CTA */
.about-cta{
  padding:120px 8%;
  text-align:center;
  background:linear-gradient(45deg,#3b5bff,#6f8cff);
  color:white;
}

.about-cta h2{
  font-size:44px;
  margin-bottom:20px;
}

.about-cta p{
  font-size:18px;
  margin-bottom:30px;
}

.about-cta button{
  background:white;
  color:#3b5bff;
  border:none;
  padding:16px 36px;
  border-radius:30px;
  font-size:16px;
  cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:900px){
  .about-hero, .story{
    flex-direction:column;
  }
  .about-hero-text, .about-hero-img,
  .story img, .story-text{
    width:100%;
    text-align:center;
  }
  .about-hero-text p{margin:auto;}
}