*{
    box-sizing: border-box;
}
body{
    margin: 0;
}
header{
    background-color: paleturquoise;
    position: relative;
    text-align: center;
    padding: 40px 0;
}
header img{
    width: 420px;
    height: auto;
    display: block;
    margin: 0 auto;
}
.header-left{
    position: absolute;
    bottom: 10px;
    left: 20px;
    font-size: 1.1rem;
    font-weight: 800;
    color: black;
    letter-spacing: 0.5px;
}
.header-right{
     position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 1.1rem;
    font-weight: 800;
    color: black;
    letter-spacing: 0.5px;
}
main section p{
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    max-width: 700px;
    margin: 0 auto;
    padding: 25px;
}
.pricing{
    text-align: center;
    margin-top: 40px;
}
.pricing table{
    margin: 0 auto;
    border-collapse: collapse;
    width: 300px;
    background: paleturquoise;
    border-radius: 10px;
    overflow: hidden;
}
.pricing th,
.pricing td {
    padding: 12px;
    color: black;
    border-bottom: 1px solid blanchedalmond;
    font-weight: 700;
}
.pricing th{
    background: #1c88ab;
    color: black;
}
.pricing tr:last-child td{
    border-bottom: none;
}
.testimonials {
    text-align: center;
    margin: 50px;
    max-width: 1000px;
}
.testimonial-row{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.testimonial{
    background: paleturquoise;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    border: 2px solid #1c88ab;
}
.testimonial p{
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.testimonial h4{
    font-size: 1rem;
    font-weight: 700;
    color: black;
}
.testimonials{
    max-width: 1200px;
    margin: 0 auto;
}
.contact{
    max-width: 600px;
    margin: 50px auto;
    text-align: center;
}
.quote-form{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}
.quote-form label{
    text-align: left;
    font-weight: 600;
}
.quote-form input,
.quote-form textarea{
    padding: 12px;
    border: 2px solid #1c88ab;
    border-radius: 8px;
    font-size: 1rem;

}
.footer-email a{
    color: #1c88ab;
    text-decoration: none;
    font-weight: 600;
}
.footer-email a:hover{
    text-decoration: underline;
}
.footer-email{
    text-align: center;
    margin-top: 10px;
}
.footer-note{
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #1c88ab;
}
@media screen and (max-width:600px){
    header{
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }
    header img{
        width: 160px;
        margin: 10px auto;
    }
    .header-left,
    .header-right{
        position: static;
        margin: 5px 0;
        font-size: 1rem;
        text-align: center;
    }
}