
.about{
padding:60px 20px;
}

.about-container{
max-width:1100px;
margin:auto;
display:flex;
align-items:center;
gap:40px;
}

.about-image img{
width:100%;
border-radius:10px;
}

.about-image{
flex:1;
}

.about-content{
flex:1;
}

.about-content h2{
font-size:40px;
margin-bottom:20px;
color:#333;
}

.about-content p{
font-size:16px;
line-height:1.6;
margin-bottom:15px;
color:#555;
}

.about-btn{
padding:10px 25px;
border:none;
background:#2e7d32;
color:white;
border-radius:5px;
cursor:pointer;
}

.about-btn:hover{
background:#1b5e20;
}

/* Responsive */

@media(max-width:768px){

.about-container{
flex-direction:column;
text-align:center;
}

.about-content h2{
font-size:26px;
}

}


/* ///////////////////////////////////////////////////////////////////////////////////////// */
.vision-mission{
padding:70px 20px;
background:#f8f8f8;
font-family:Arial, sans-serif;
}

.vm-container{
max-width:1100px;
margin:auto;
display:flex;
gap:30px;
}

.vm-box{
background:white;
padding:35px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
flex:1;
text-align:center;
transition:0.3s;
}

.vm-box:hover{
transform:translateY(-5px);
}

.vm-icon{
font-size:40px;
margin-bottom:15px;
}

.vm-box h2{
font-size:26px;
margin-bottom:15px;
color:#333;
}

.vm-box p{
font-size:16px;
line-height:1.6;
color:#555;
}

/* Responsive */

@media(max-width:768px){

.vm-container{
flex-direction:column;
}

.vm-box{
padding:25px;
}

.vm-box h2{
font-size:22px;
}

}