
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #36588b;
  font-display: swap;
}

.container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;

  max-width: 700px;
  margin: 20px auto;
  padding: 15px;
  overflow-x: hidden;
}

.grid {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.grid div {
  padding: 0;
}

.title {
  background: #36588b;
  padding: 10px;
  height: 150px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.top-row {
  display: flex;
  align-items: center;
  gap: 5px;
}


.subtitle {
  font-family: Arial, sans-serif;
  color: black;
  font-size: 26px;
}

.main-title {
  margin: 0;
  font-family: Arial, sans-serif, cursive;
  color: #36588b;
  -webkit-text-stroke: 2px white;
  font-size: 37px;
}

.logo {
  height: 80px;
  width: auto;
}

h2 {
  color: #36588b;
  font-size: 23px;
  display: flex;
  align-items: center;
  margin: 0;
}

p {
  margin: 0;
  font-size: 14px;
}

.card {
  background: white;
  padding: 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.infoColumn {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.targetGroup {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

/* mobile version no bigPictor*/
.bigPicture {
  display: none;
}

@media (max-width: 360px) {
  .main-title {
    font-size: 27px;
    -webkit-text-stroke: 1px white;
  }

  .subtitle {
    font-size: 24px;
     -webkit-text-stroke: 0.5px black;
  }
  .logo {
  height: 70px;
  width: auto;
}


}

@media (min-width: 1400px) {

  .targetGroup {
    grid-template-columns: repeat(2, 1fr); /* 👈 naast elkaar */
    gap: 40px;
  }

  .container {
  display: grid;
  grid-template-columns: 1fr 800px;
  gap: 20px;

  max-width: 1400px;
  margin: 15px auto;
  }

  .title {
    height: 250px;
  }

  .main-title {
    font-size: 60px;
  }

  .subtitle {
  font-family: Arial, sans-serif;
  color: #36588b;
  -webkit-text-stroke: 1px black;
  font-size: 50px;
}

  .logo {
    height: 130px;
  }

  p {
    font-size: 16px;
  }
  h2{
    font-size: 40px;
  }

  .bigPicture {
    display: block;
    width: 540px;
    height: 100%;
  }

  .bigPicture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #smallFoto{
    width: 70%;
  }
  
  
}
.footer-container{
  background-color: white;
  grid-column: 1/-1;
  padding: 15px;
  box-sizing: border-box;
}

