:root {
    --primary-blue: #263489;
    --accent-red: #ec1d25;
    --text-black: #000000;
    --bg-light: #f4f6f9;
}

.mnr-about-section{
    background: var(--bg-light);
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    position: relative;
    overflow: hidden;
}

.mnr-about-section::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:8px;
    height:100%;
    background:var(--accent-red);
}

.mnr-about-title{
    color:var(--primary-blue);
    font-size:34px;
    font-weight:700;
    margin-bottom:18px;
    position:relative;
    padding-bottom:12px;
}

.mnr-about-title::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:90px;
    height:4px;
    background:var(--accent-red);
    border-radius:10px;
}

.mnr-about-section p{
    color:var(--text-black);
    font-size:16px;
    line-height:1.9;
    margin-bottom:20px;
    text-align:justify;
}

.highlight-text{
    color:var(--primary-blue);
    font-weight:600;
}

@media(max-width:768px){
    .mnr-about-section{
        padding:25px;
    }

    .mnr-about-title{
        font-size:28px;
    }
}