body {
background-image: url(Images/contact.jpg);
height: 500px;
background-size: cover;
background-position: center;
margin: 0;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
color: white;
text-shadow: black 2px;
}

.container {
max-width: 800px;
margin: 0 auto;
padding: 40px 20px;
}
h1 {
text-align: center;
margin-bottom: 20px;
font-size: 2.2rem;
}
.intro {
text-align: center;
margin-bottom: 40px;
font-size: 1.1rem;
}
.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
margin-bottom: 40px;
}
.contact-box {
width: 800px;
height: 150px;
text-align: center;
background: rgba(82, 81, 81, 0.527);
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.contact-box h3 {
margin-top: 0;
margin-bottom: 10px;
}