/*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;
}
main
{
  padding: 60px 8%;
  background: #fafafa;
  font-family: "Segoe UI", Roboto, sans-serif;
}
/*tekstboxen*/
.bedrijven
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: stretch;
}

.bedrijf {
  background: white;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 25px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
/*afbeeldingen*/
.bedrijf img
{
  width: 100%;
  max-height: 160px;
  object-fit: contain;
  margin-bottom: 15px;
}
.bedrijf h2
{
  color: #2a2a2a;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.bedrijf p
{
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}
/*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;
}