/* HERO SECTION */
.about-hero{
    width: 100%;
    height: 320px;
    background: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&w=1280") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.about-hero h1{
    font-size: 48px;
    font-weight: 700;
}

.about-hero p{
    font-size: 20px;
    margin-top: 10px;
}



/* ABOUT STORY */
.about-story{
    width: 100%;
    padding: 70px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.story-content h2{
    font-size: 36px;
    margin-bottom: 20px;
}

.story-content p{
    font-size: 16px;
    line-height: 27px;
    color: #444;
    margin-bottom: 15px;
}

.story-img img{
    width: 350px;
    height: auto;
}



/* WHY US */
.why-us{
    text-align: center;
    padding: 60px 10%;
    background: #f9f9f9;
}

.why-us h2{
    font-size: 32px;
    margin-bottom: 40px;
}

.why-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-box{
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    transition: .3s;
}

.why-box:hover{
    transform: translateY(-8px);
}

.why-box i{
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.why-box h3{
    font-size: 20px;
    margin-bottom: 10px;
}

.why-box p{
    color: #555;
}
