#content {
    width:auto;
    background-color:#dadfef;
    color:white;
    display:flex;
    flex-direction: row;
    padding:0px;
    margin:0px;
}

#imgContainer {
    background-color:#dadfef;
    width:60%
}
#content img {
    width:100%;
}

#satisfactionGuarantee{
    background-color: #b24a66;
    color:white;
    width:40%;
    display:flex;
    flex-direction: column;
    text-align: left;
    padding:30px;
}

#satisfactionGuarantee h1 {
    color:white;
    font-size:45px;
}

.line {
    width:200px;
    height:2px;
    background-color:white;
    margin: 15px 0px 30px 0px;
}

#satisfactionGuarantee p {
    color:white;
    line-height: 2;
    font-size:large;
}
#satisfactionGuarantee a {
    margin:30px;
    position:relative;
    background-color: black;
    color:white;
    padding:15px 40px;
    border-radius: 12px;
    width:fit-content;
    align-self: center;
}

#satisfactionGuarantee a:hover {
    background-color: #252525;
}

@media (max-width: 1200px) {
    #content {
        flex-direction: column;
    }

    #satisfactionGuarantee {
        width: auto;
    }

    #imgContainer {
        width: 100%;
        height: auto;
    }

    #content img {
        height: auto;
    }   
}