.company-story{

    max-width:1200px;

    margin:50px auto;

    padding:50px;

    background:#fff;

    border-radius:24px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.story-title{

    text-align:center;

    margin-bottom:50px;
}

.story-small{

    display:block;

    color:#4BAFD4;

    font-weight:bold;

    letter-spacing:.25em;

    margin-bottom:15px;
}

.story-title h2{

    font-size:2.4rem;

    color:#FF5A5F;

    line-height:1.5;
}

.story-box{

    max-width:900px;

    margin:auto;
}

.story-box p{

    margin:35px 0;

    font-size:1.1rem;

    line-height:2.1;

    color:#555;

    text-align:justify;
}

.story-strength{

    margin-top:60px;

    text-align:center;
}

.story-strength h3{

    color:#4BAFD4;

    margin-bottom:30px;

    font-size:2rem;
}

.strength-list{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:18px;
}

.strength-list div{

    padding:16px 24px;

    border-radius:999px;

    background:#FFF5F5;

    border:1px solid rgba(255,90,95,.25);

    font-weight:bold;

    color:#444;

    box-shadow:0 4px 10px rgba(0,0,0,.05);

    transition:.25s;
}

.strength-list div:hover{

    transform:translateY(-4px);

    background:#FFF0F0;
}

@media(max-width:768px){

    .company-story{

        padding:25px 20px;
    }

    .story-title h2{

        font-size:1.7rem;
    }

    .story-box p{

        font-size:1rem;

        text-align:left;

        line-height:1.9;
    }

    .strength-list{

        flex-direction:column;
    }

}

.company-card{

    max-width:1100px;

    margin:80px auto;

    padding:30px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.97),
            rgba(250,250,248,.97)
        );

    border-radius:22px;

    box-shadow:
        0 18px 40px rgba(0,0,0,.12);

    border:1px solid #ddd;

    position:relative;

    overflow:hidden;
}

.company-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;
    right:0;

    height:6px;

    background:
        linear-gradient(
            90deg,
            #FF5A5F,
            #FFD54A,
            #00A699
        );
}