/* Basic reset and some global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

/* Centering content using flexbox */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
}

.col-sm-12{
    max-width: 500px;
}

.row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* About Section */
.about-mf {
    padding: 40px 0;
    width: 100%;
}

.box-shadow-full {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
}

.title-left {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.lead {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

ul {
    margin-left: 20px;
    list-style-type: disc;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}





/* Mobile responsiveness */
@media (max-width: 768px) {
    

   

    .container {
        padding: 10px;
    }

    .about-mf {
        padding: 20px;
    }

    .box-shadow-full {
        padding: 15px;
    }

    
}

@media (max-width: 480px) {
    .title-left {
        font-size: 20px;
    }

    .lead {
        font-size: 14px;
    }
}
