body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: white;
    background-repeat: no-repeat;
    background-position: bottom;
}

a {
    text-decoration: none;
    color: black;
}

header {
    background: black;
    padding: 0;
}

nav {
    background-color: rgb(168, 161, 161);
    font-weight: bold;
    padding: 20px;
}

ul {
    color: rgb(114, 61, 61);
    list-style-type: none;
    margin: 0;
    padding: 0;
}

li {
    font-size: 25px;
    color: black;
    display: inline-block;
    margin-right: 150px;
}

.contact-us {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.contact-us h1 {
    text-align: left;
}

.contact-us .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    flex-wrap: wrap;
}

.contact-us .content .logo {
    text-align: center;
    flex: 1;
}

.contact-us .content .logo img {
    width: 150px;
    height: auto;
}

.contact-us .content .logo h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.5em;
}

.contact-us .content .contact-details {
    text-align: left;
    flex: 2;
    padding-left: 200px;
}

.contact-us .description {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.contact-us .description p {
    margin-bottom: 15px;
    text-align: left;
}

.contact-us .image {
    margin-top: 20px;
    text-align: center;
}

.contact-us .image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

footer {
    background-color: #f2f2f2;
    padding: 10px 0;
    color: #948a8a;
    margin-top: 20px;
}