body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: white;
    padding: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 10px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

section {
    padding: 20px;
}

footer {
    background-color: #333;
    color: white;
    padding: 10px;
    position: relative; /* Changed from absolute to relative */
    bottom: 0;
    width: 100%;
    clear: both; /* Ensures that the footer stays below other content */
}

/* Added for centering the image and preventing overlap */
section img {
    display: block;
    margin: 0 auto; /* Centers the image */
}

/* Added for the contact info styling */
.contact-info {
    display: block;
    text-align: center; /* Centers the contact information */
}
