* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

header, section h2, section h3, body, input, textarea{
    font-family: "Roboto", sans-serif;
}

.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

header{
    padding: 16px;
    background-color: #000080 ;
}

header img {
    height: 290px;
}

header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 148px;
}

header li{
    display: inline;
    color: beige;
}

header nav li a{
    color: beige;
    text-decoration: none;
}


.couch-cleaning{
    height: 400px;
    margin-right: 16px;
}

section .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section{
    padding: 24px 0;
}

section p,
section h2,
section h3{
    margin-bottom: 12px;
    color: #000080;
}



#contact .container{
    display: block;
}

.contact-methods{
    display: flex;
    justify-content: space-between;
}

form input,
textarea,
button{
    display: block;
    width: 320px;
    margin-bottom: 8px;
    padding: 8px;
}

form textarea{
    resize: none;
    height: 80px;
}

form button{
    background-color: #000080;
    color: beige;
    cursor: pointer;
    border: none;
}

form button:hover{
    background-color: #1919de;
}

input:focus, textarea:focus{
    outline-color: #000080;
}

.social-links img{
    height: 24px;
    margin-top: 8px;
}

.social-links li{
    display: inline;
    margin-right: 8px;
}

.social-links li a{
    text-decoration: none;
}

footer{
    background-color: #000080;
    padding: 24px;
    color: beige;
}

.social-links .whatsapp{
    height: 70px;
}