*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: sans-serif;
    background-color: #7a7a7a;
    font-size: 14px;
}

.container{
    max-width: 990px;
    margin: 25px auto;
    background-color: #f9f9f9;
}

.subcontainer{
    padding: 0 25px;
}

header {
    height: 90px;
    padding: 20px;
    border-bottom: 2px solid #f8f8f8;
    position: relative;
}

.logo img {
    position: absolute;
    left:0px;
    top: 15px;
    height: 60px;
    width: auto;
}

.phone {
    position: absolute;
    right: 20px;
    top: 30px;
    font-size: 24px;
    font-weight: bolder;
    color: #E00;
}

nav {
    height: 47px;
    font-size: 15px;
    font-family: arial;
    font-weight: bold;
    color: #FFFFFF;
    background-color: #4c4c4c;
    display: flex;
    align-items: center;
}

nav a{
    color: #f8f8f8;
    padding: 15px 16px 15px 16px;
    text-decoration: none;
    font-size: 15px;
}
nav a:hover{
    background-color: #7a7a7a;
    padding: 15px 16px 15px 16px;
    text-decoration: none;
}
.active{
    background-color: red;
    padding: 15px auto 15px auto;
    text-align: center;
}

hr{
    margin-top: 7px ;
    margin-bottom: 30px;
}
.hero img{
    width: 100%;
    height: 380px;
    margin-top: 30px;
    margin-bottom: 30px;
    object-fit: cover;
}

.welcome h2{ 
    color: red;
    font-size: 35px;
}

.content{
    display: grid;
    grid-template-columns:35% 1fr;
    gap:10px;
    margin-bottom: 10px;
    font-weight: normal;
}

.left img{
    width:100%;
}

.right p{
    line-height:1.7;
    color:#444444;
    word-wrap: break-word;
}

footer{
    background-color: #4C4C4C;
    color: #F9F9F9;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    padding: 20px 0px 20px 0px; 
}

