/* General styles */
body {
    font-family: 'Space Grotesk', sans-serif;
    margin: 0;
    padding: 0;
    color: #000000;
}

h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
}

/* Header styles */
header {
    width: 100%;
    text-align: center;
    padding: 80px 0;
}

.header-content {
    display: inline-block;
}

header img {
    width: 550px; /* Vergroot het logo */
    height: auto;
}

header h1 {
    font-size: 36px;
    color: #000000;
    margin-top: 10px;
}

/* Split section (Text + Image) */
.split-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.text-section {
    flex: 1;
    max-width: 100%; /* -- */
    padding: 10%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers the text vertically */
    background-color: #fafafa;
    text-align: center; /* -- */
}

.text-section h2 {
    color: #C6BB9E;
    margin-bottom: 20px;
}

.text-section p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cta a {
    background-color: #C6BB9E;
    color: #FFFFFF;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta a:hover {
    background-color: #b0a488;
}

/* Image section */
.image-section {
    flex: 1;
    max-width: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;

}


/* FAQ section */
.faq-section {
    padding: 130px 20px;
}

.faq {
    max-width: 960px;
    margin: 0 auto;
    text-align: left!important
}

.faq h3 {
    color: #C6BB9E;
    margin-bottom: 22px;
    font-size: 34px;
}

.faq h4 {
    font-size: 22px;
    margin-bottom: 10px;

}

.faq p {
  font-size: 14px;
    margin-bottom: 10px;
}

/* Footer styles */
footer {
    width: 100%;
    background-color: #C6BB9E;
    color: #000000;
    text-align: center;
    padding: 80px 0;
}

footer p {
    margin: 0;
    font-size: 14px;
}

@media screen and (max-width: 1024px) {

  body {
    font-size: 0.8em;
  }

  .text-section {
    padding: 5%;
  }

  .text-section p {
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 20px;
  }

  .cta a {
      background-color: #C6BB9E;
      color: #FFFFFF;
      padding: 15px 30px;
      text-decoration: none;
      border-radius: 5px;
      font-size: 16px;
      font-weight: bold;
      transition: background-color 0.3s ease;
  }

  header img {
      width: 300px; /* Vergroot het logo */
      height: auto;
  }


  .split-section {
        flex-direction: column; /* Zet de elementen onder elkaar */
    }


    .text-section {
        order: 0; /* Zorg ervoor dat de tekst eerst komt */
        max-width: 100%; /* Full width for mobile */
        padding-bottom: 100px;
    }

    .image-section {
        order: 1; /* Zet de afbeelding onder de tekst */
        display: block;
        max-width: 100%;
        padding-bottom: 50vh !important;
    }


    .faq-section {
    padding: 0px 0px;
    text-align: left;
}

    .faq {
      padding: 60px 20px!important;
      max-width: 80%;
      margin: 0 auto;
    }
}
