.about {
    width: 90%;
    max-width: 1200px;
    margin: 80px auto;
    padding: 50px 0;
}

.about-container {
    display: flex;
    align-items: flex-start;
    justify-content: center; 
    flex-wrap: wrap;
    gap: 100px; 
    max-width: 1100px; 
    margin: auto;
}


.about-text {
    width: 50%; 
    max-width: 500px; 
    text-align: justify; 
}

.about-text h1 {
    font-size: 36px;
    color: #5A7D57;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #4a3f35;
}

.about-image {
    margin-top: 100px;
    width: 40%; 
    max-width: 500px; position: sticky;
    top: 100px; /* afstand tot bovenkant bij scrollen */
    align-self: flex-start; /* voorkomt dat sticky gecentreerd wordt */
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Missie en visie */
.mission,
.team-culture {
    text-align: center;
    width: 80%;
    max-width: 900px;
    margin: 40px auto; /* Minder witruimte tussen secties */
    padding: 30px 20px;
    background: #f8f4ee; /* Lichte achtergrond voor subtiele afbakening */
    border-radius: 10px; /* Afgeronde hoeken voor zachtere uitstraling */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05); /* Lichte schaduw voor diepte */
}

.mission h2,
.team-culture h2 {
    font-size: 32px;
    color: #5A7D57;
    margin-bottom: 10px;
    font-weight: bold;
}

.mission p,
.team-culture p {
    font-size: 18px;
    line-height: 1.8; /* Meer ademruimte voor de tekst */
    color: #4a3f35;
    max-width: 750px;
    margin: 10px auto; /* Zorgt voor nettere tekstuitlijning */
}

.values {
    text-align: center;
    width: 90%;
    max-width: 1000px;
    margin: 60px auto;
}

.values h2 {
    font-size: 32px;
    color: #5A7D57;
    margin-bottom: 30px;
}

.values-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: nowrap; 
}


.value-box {
    width: 260px;
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-box:hover {
    transform: translateY(-5px);
}
.contact-button {
    display: block;
    width: 250px; 
    margin: 2em auto 1em auto; 
    padding: 0.75em 1.5em;
    background-color: #5A7D57;
    color: white;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
  }
  
  .contact-button:hover {
    background-color: #013f19;
  }
    .value-box img {
    width: 160px;
    margin-bottom: 15px;
}

.value-box h3 {
    font-size: 20px;
    color: #5A7D57;
    margin-bottom: 10px;
}

.value-box p {
    font-size: 16px;
    color: #4a3f35;
    line-height: 1.6;
}
.side-by-side {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    width: 90%;
    max-width: 1100px;
    margin: 60px auto;
}

.info-box {
    flex: 1 1 450px;
    background: #f8f4ee;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
    text-align: center;
    max-width: 500px;
}

.info-box h2 {
    font-size: 28px;
    color: #5A7D57;
    margin-bottom: 15px;
}

.info-box p {
    font-size: 17px;
    color: #4a3f35;
    line-height: 1.7;
}

.about-atipis {
    width: 90%;
    max-width: 900px;
    margin: 60px auto;
    text-align: justify; /* ➤ Belangrijk: tekst links en rechts uitlijnen */
    hyphens: auto;        /* ➤ Optioneel: woorden splitsen voor nettere verdeling */
}

.about-atipis h2,
.about-atipis h3 {
    text-align: center; /* Titels blijven gecentreerd */
}

.about-atipis h2 {
    font-size: 32px;
    color: #5A7D57;
    margin-bottom: 20px;
}

.about-atipis h3 {
    font-size: 24px;
    color: #5A7D57;
    margin-top: 40px;
    margin-bottom: 10px;
}

.about-atipis p {
    font-size: 18px;
    color: #4a3f35;
    line-height: 1.8;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .values-grid {
      flex-wrap: wrap; 
    }
  
    .value-box {
      width: 250px;
    }
  }
  @media (max-width: 768px) {
    .side-by-side {
      flex-direction: column;
      align-items: center;
    }
    .about-container {
        flex-direction: column;
        align-items: center;
        gap: 50px;
      }
    
      .about-text,
      .about-image {
        width: 90%;
        max-width: none;
        margin-top: 0px;
      }
      .about-text {
        text-align: left;
      }
    }
  
  
  