/*navigatie balk*/
header
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color:#ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
header img
{
    height: 75px;
    width: auto;
}
nav ul
{
    list-style: none;
    display: flex;
    justify-content: center;
    height: 30px;
    gap: 50px;
    margin: 0;
    margin-right: 50px;
    padding: 0;
}
nav, a
{
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-family: Arial;
}
/*tekstboxen*/
.content
{
  display: flex;
  align-items: flex-start;
  gap: 40px;
  width: 100vw;
  max-width: none;
  margin: 40px 0;
  padding: 0 50px;
  box-sizing: border-box;
}
/*afbeelding*/
#west
{
  width: 50%;
  height: auto;
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  position: static;
  top: auto;
  transform: none;
  margin-top: 75px;
}
.texts
{
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.betuwe
{
  background-color: #f9f9f9;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  text-align: left;
}
.betuwe h1
{
  margin-top: 0;
  font-family: Arial, sans-serif;
  font-size: 2rem;
  color: #333;
}
.betuwe p
{
  font-family: Arial, sans-serif;
  line-height: 1.5;
  color: #333;
}
/*contact footer*/
.contact {
  background-color: antiquewhite;
  border-top: 40px solid black;
  text-align: center;
  font-family: Arial, sans-serif;
}
.contact-footer {
  background-color: antiquewhite;
  border-top: 5px solid #d4a373;
  text-align: center;
  font-family: Arial, sans-serif;
  padding: 40px 20px;
  margin-top: 40px;
}

.contact-footer p {
  font-size: 1.1rem;
  color: #333;
}