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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
  background-color: #f9f5f0; /* Beige */
  color: #4b2e2a; /* Brown */
}

nav {
  background: #ffffff; /* White */
  color: #4b2e2a;
  padding: 1rem;
  border-bottom: 2px solid #d1b99a; /* Light brown/beige */
}

nav ul {
  list-style: none;
  display: flex;
  padding-left: 0;
  margin: 0;
  justify-content: flex-start;
}

nav ul.logo-menu {
  flex-direction: row;
}

nav ul li {
  margin-right: 20px;
}

nav ul li a {
  color: #4b2e2a;
  text-decoration: none;
  font-size: 18px; /* Larger font size */
  font-weight: bold; /* Bold text */
  padding: 10px 20px; /* Padding for the border effect */
  border: 2px solid #4b2e2a; /* Border color */
  border-radius: 5px; /* Rounded corners */
  display: block;
}

nav ul li a:hover {
  background-color: #d1b99a; /* Light brown/beige on hover */
}

.logo {
  height: 50px;
}

.section {
  padding: 50px 20px;
  min-height: 100vh;
  border-bottom: 2px solid #d1b99a; /* Light brown/beige border between sections */
}

#welcome-banner {
  background-image: url('background.jpg');
  background-size: cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

h2 {
  margin-bottom: 20px;
  color: #4b2e2a;
}

footer {
  background: #4b2e2a; /* Brown */
  color: #ffffff;
  text-align: center;
  padding: 10px;
}

#map {
  height: 400px;
  width: 100%;
  margin-top: 20px;
  border: 2px solid #d1b99a; /* Light brown/beige border */
}

.welcome-image {
  max-width: 100%;
  height: auto;
  border: 2px solid #d1b99a; /* Light brown/beige border */
  margin: 0 auto 20px; /* Center image and add margin below */
  display: block; /* Make sure the image is a block element */
}

.description {
  max-width: 800px;
  margin: 0 auto; /* Center the description */
  font-size: 18px; /* Adjust font size as needed */
  line-height: 1.6;
  color: #4b2e2a; /* Brown text color */
}

.welcome-banner {
  text-align: center; /* Center text and image */
  padding: 50px 20px;
}