body {
  background-color: white;
}

.filler-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  min-width: 200px;
  /*margin-bottom: 30px;*/
}

/*dark section*/
.img-text-section-dark {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  overflow: hidden;
}

.content-dark {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 0;
  background-color: #004b4b; /* Optional: match site theme */
}

/* Text side */
.text-content-dark {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #004b4b; /* Optional: match site theme */
  min-width: 200px;
}

.text-content-dark h2 {
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
}
.text-content-dark h3 {
  font-size: 2rem;
  color: white;
  margin-top: 1rem;
}

.text-content-dark p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: white;
}

.stilling-gallery {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 20px;

  margin-top: 20px;
  margin-bottom: 100px;
}

.stilling {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 5px;
  justify-content: center;

  max-width: 300px;
  background-color: white;
  text-align: center;
  border-width: 0, 5px;
  border-style: solid;
  border-color: #004b4b;
  padding: 30px;
}

.stilling h2 {
  color: #004b4b;
  font-size: 1.5rem;
  margin: 10px 0;
}

@media (max-width: 600px) {
  .content,
  .content-dark {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    padding: 20px; /* or whatever you want */
    height: auto;
  }
  .content-dark {
    flex-direction: column-reverse;
  }

  .image-content,
  .text-content,
  .text-content-dark {
    width: 100%;
    min-width: 0;
    height: auto;
  }
  .image-content {
    padding: 0px;
  }
  .image-content img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }
}
