body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #00143d;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

.logo {
    width: 150px;
}

nav ul {
  display: flex; /* Add this to center the ul element */
  justify-content: center; /* Add this to center the ul element */
  padding: 0;
  margin: 0;
}

nav ul li {
  margin: 0 1rem; /* Keep this to add space between the list items */

}

main {
    padding: 2rem;
    text-align: center;
}

section {
    margin-bottom: 2rem;
}

section img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.contact-button {
    text-align: center;
}

.whatsapp-button, .instagram-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.whatsapp-button {
    background-color: #25D366;
}

.instagram-button {
    background-color: #E4405F;
}

footer {
    background-color: #00143d;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    bottom: 0;
	
}