*{
margin: 0px;
pading: 0px;
box-sizing: border-box;
font-family: sans-serif;
}

.about-us{
min-height:100vh;
padding: 50px 0px;
background-color: #39648f;
background-image: url('img/remove.png');
}

.container{
max-width: 1200px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 30px;
border-radius: 10px;
margin: 0px auto;	
}

.about-image{
width: 50%;
overflow: hidden;
box-shadow: 0 0 10px rbga(0,0,0,0.2);
}

.about-image img{
display: block;
width: 100%;
height: auto;
transition: transform 0.3s ease;
}

.about-image:hover img{
transform: scale(1.1);
}

.about-content{
width: 50%;
margin-left: 40px;
}

.about-content h2{
color: #fff;
font-size: 32px;
margin-bottom: 20px;
}

.about-content p{
color: #c7d5e0;
font-size: 17px;
line-height: 1.6;
}

.social-links{
margin-bottom: 20px;
}

.social-links a{
display: inline-block;
margin-right: 10px;
color: #c7d5e0;
font-size: 22px;
transition: color 0.3s ease;
}

.social-links a:hover{
color: #fff;
}

.btn{
font-size: 17px;
display: inline-block;
padding: 12px 16px;
background-color: #4caf50;
color: #fff;
text-decoration: none;
border-radius: 5px;
}

.btn i{
margin-right: 5px;
}

.btn:hover{
background-color: #45a049;
}

@media screen and (max-width: 768px){
.container{
flex-direction: column;
text-align: center;	
}
.about-image, .about-content{
padding:  0px;
margin-top: 50px;
margin-left: 0px;
}
}