/* About Us */
.about-us-right {
    border-bottom: 1px solid #BCBCBC;
    padding-bottom: 24px;
}
/* End About Us */

/* Our Vision */
.our-vision-content p {
    margin-bottom: 12px;
}
.our-vision-content p:last-child {
    margin-bottom: 0;
}
.our-vision-img.mobile { display: none;}
/* End Our Vision */

/* About Features */
.about-features-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.about-features-icon { margin-bottom: 6px;}
.about-features-block h2 { margin-bottom: 2px;}
/* End About Features */

/* Responsive CSS */
@media only screen and (max-width: 1200px) { 
    .about-features-block {
        gap: 20px;
    }
}
@media only screen and (max-width: 991px) { 
    .about-features-block {
        gap: 16px;
    }
}
@media only screen and (max-width: 767px) {
    .our-vision-img.desktop { display: none;} 
    .our-vision-img.mobile { display: block;}
    .about-features-img { margin-bottom: 20px;}
    .about-features-block {
        gap: 12px;
    }
}
@media only screen and (max-width: 575px) { 

}
@media only screen and (max-width: 480px) { 
    .about-features-block {
        grid-template-columns: repeat(1, 1fr);
        gap: 8px;
    }
}