/* Resetting some default styles */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    font-family: 'Roboto';
}

.container {
    padding: 20px;
    text-align: center;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
   margin-top: 10%;
}


.header .logo img {
    margin-bottom: 20%;
    height: auto;
    width: auto;
   
}

.details {
    border-top: 1px dotted #CFDBE6;
    text-align: center;
    font-size: 16px;

}

.details h2 {
    font-size: 22px;
    font-weight: bold;
    margin: 40px 0px 20px 0px;
    color: #0C522A;
    line-height: 22px;
}

.address {
    margin-bottom: 5px;
    color: #353535;
    line-height: 26px;
}

.contact {
    margin-bottom: 30px;
    line-height: 26px;
}

.contact a {
    text-decoration: none;
    color: #353535;
}

.contact p {
    color: #353535;
}

.customer-care {
    font-weight: 600;
    font-size: 22px;
    color: #0C522A;
    margin-top: 15px;
    line-height: 22px;
}