* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.containerMissionVision {
    width: 100%;
   
    background-color: white;
    border: 8px solid #009345; /* Green border from the image */
    padding: 20px;
}

/* Header Styles */
.headerMissionVision {
    display: flex;
    align-items: center;
    background-color: #009345;
    color: white;
    padding: 10px 20px;
    margin-bottom: 30px;
}

.logo {
    width: 70px;
    height: 70px;
    background-color: white;
    border-radius: 50%;
    margin-right: 20px;
}

.college-name {
    font-size: 2.3rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Section Boxes */
.section-box {
    position: relative;
    border: 2px solid #009345;
    border-radius: 15px;
    margin-bottom: 40px;
    padding: 30px 20px 20px 20px;
}

.section-title {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 0 20px;
    color: #e31e24; /* Red color for titles */
    font-size: 2rem;
    font-weight: bold;

}

/* Grid Layout for bilingual text */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 10px 0;
    
}

.text-block {
    line-height: 1.6;
    font-size: 11pt;
    color: #333;
    text-align: justify;
    font-family: Verdana;
    color: black;
}

.english {
    border-left: 5px solid #00a0e3; /* Blue accent line */
    padding-left: 15px;
    font-family: Verdana;
    font-size: 11pt;
    color: black;
}

.bengali {
    border-left: 5px solid #00a0e3;
    padding-left: 15px;
    font-family: 'Siyam Rupali', Arial, sans-serif; /* Fallback for Bengali */
}

.border-bottom {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    .college-name {
        font-size: 1.5rem;
    }
}