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

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    
}

header {
    background-color: #ffffff;
    color: rgb(197, 8, 8);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: bold;
}

section.content {
    display: flex;
    justify-content: space-between;
    padding: 40px 20px;
}

.content .box {
    background-color: #ececec;
    padding: 20px;
    width: 30%;
    border-radius: 10px;
}

.content .box h2 {
    color: #cc0000;
    margin-bottom: 15px;
}

.reviews {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

.reviews h2 {
    font-family: Arial, Helvetica, sans-serif;
    color: #cc0000;
    margin-bottom: 20px;
}

.review-text {
    background-color: #ececec;
    padding: 20px;
    border-radius: 10px;
}

.review-text p {
    color: #333;
}

footer {
    background-color: #110081;
    color: white;
    text-align: center;
    padding: 0px;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.footer-image img { 
    width: 100%;
    height: 100px;
   
}
