body{
    background:#fff6f9;
    font-family:Arial,sans-serif;
}

/* Banner */
.about-banner img{
    width:100%;
    height:420px;
    object-fit:cover;
    display:block;
}

/* About */
.about{
    max-width:1000px;
    margin:60px auto;
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.about h1{
    text-align:center;
    font-family:Georgia,'Times New Roman',serif;
    font-size:42px;
    color:#6b0f2b;
    margin-bottom:25px;
}

.about h2{
    color:#e0157a;
    margin-top:35px;
    margin-bottom:12px;
}

.about p{
    color:#555;
    line-height:1.9;
    font-size:18px;
}

/* Mobile */
@media(max-width:768px){

    .about-banner img{
        height:220px;
    }

    .about{
        margin:20px;
        padding:25px;
    }

    .about h1{
        font-size:28px;
    }

    .about p{
        font-size:16px;
    }
}