main{
    margin-top: 30px;
    color: #34495E;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    
}
.container h1 {
    color: #653452
}
.belso-container{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.belso-container .left {
    width: 40%;
    margin-left: 150px;
}
.belso-container .right {

    width: 60%;
    margin-right: 40px;
    margin-top: 20px;
}
.belso-container .right img{
    width: 90%;
    border-radius: 20px;
}
/* header {
    text-align: center;
    margin-bottom: 20px;
} */


section {
    margin-bottom: 20px;
}

section h2 {
    margin-top: 50px;
    border-bottom: 2px solid #34495E;
    padding-bottom: 10px;
    margin-bottom: 10px;
    text-align: center;
}

section p{
    text-align: center;
}
.services ul {
    list-style-type: none;
    padding: 0;
    display: flex;
}

.services li {
    margin: 5px 0;
    padding: 10px;
    border-left: 5px solid #34495E;
}

.contact p {
    margin: 5px 0;
}

.contact p:last-child {
    font-style: italic;
}

.contact-menu {
    background-color: #ECE3E4;
    padding: 20px;
    text-align: center;
}
.contact-menu a {
    text-decoration: none;
    color: #34495E;
    display: inline-flex;
    align-items: center;
    margin: 10px;
    font-size: 18px;
    transition: color 0.3s ease;
}
.contact-menu a:hover {
    color: #653452;
}
.contact-menu a .logo  {
    width: 50px;
    height: 50px;
    fill: #34495E;
    margin-right: 10px;
    transition: fill 0.3s ease;
}

@media only screen and (max-width: 1000px) {
    .belso-container .right img{
        width: 80%;
    }
}
@media only screen and (max-width: 850px) {
    
    .belso-container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .belso-container .left {
        margin-left: 0px;
        width: 70%;
    }
    .belso-container .right {
        width: 100%;
        margin-right: 0px;
    }
    
}