/* ================================
   1. RESET & GLOBAL STYLES
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c3e50;
    background-color: #f4f7f6;
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 300;
}
  
  /* Helpt om de container netjes te centreren */
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  
  /* ================================
     2. HEADER & NAVIGATION
  ================================ */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    color: #1a5f7a;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo-part {
    display: inline-block;
    transition: transform 0.2s ease;
}

.logo-part:hover {
    transform: scale(1.05);
}

/* Extra styling voor AI-gedeelte in het logo */
.logo-ai {
    color: #137094;
    font-weight: 900;
    margin: 0 2px;
}

/* Wanneer de gebruiker scrollt, achtergrond en schaduw toevoegen */
.header-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

/* NAV */
.nav-menu {
    display: flex;
    list-style: none;
    transition: all 0.3s ease;
    align-items: center;
}

.nav-item {
    margin-left: 25px;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #1a5f7a;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #1a5f7a;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}
  
  /* BURGER MENU (mobile) */
  .burger {
    display: none; /* Standaard op desktop verbergen */
    flex-direction: column;
    cursor: pointer;
  }
  
  .line1, .line2, .line3 {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px;
    transition: all 0.3s ease;
  }
  
  /* Animatie-effect bij openen burger menu */
  .burger.active .line1 {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active .line2 {
    opacity: 0;
  }
  .burger.active .line3 {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  /* Als nav-menu actief is op mobiel */
  .nav-menu.active {
    display: flex;  /* of block, afhankelijk van voorkeur */
  }
  
  /* ================================
     3. BUTTON STYLES
  ================================ */
  .btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-weight: 600;
    text-align: center;
  }
  
/* Primaire knop */
.btn-primary {
    background-color: #1a5f7a;
    color: #fff;
    border: 2px solid #1a5f7a;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #137094;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Secundaire knop */
.btn-secondary {
    background-color: transparent;
    color: #1a5f7a;
    border: 2px solid #1a5f7a;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background-color: #1a5f7a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
  
  
  /* ================================
     4. HERO SECTION
  ================================ */
  .hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;  /* Adjusted for fixed header and consistent bottom padding */
    position: relative;
    z-index: 1; /* Zodat tekst boven overlay staat */
  }
  
  .hero-content {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 30px;
  }
  
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
  }
  
  /* ================================
     5. SERVICES SECTION
  ================================ */
  .services {
    padding: 80px 0; /* Standardized padding */
    text-align: center;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
  }
  
.services-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: stretch;
}

.service-card {
    flex: 1;
    background-color: white;
    border-radius: 8px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid rgba(26, 95, 122, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a5f7a;
    opacity: 0.8;
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1a5f7a;
    letter-spacing: -0.5px;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #2c3e50;
    opacity: 0.9;
}
  
  /* ================================
     6. ABOUT SECTION
  ================================ */
  .about {
    padding: 80px 0; /* Standardized padding */
  }
  
  .about-content {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    gap: 40px;
    justify-content: center; /* Center items when they wrap */
    align-items: flex-start; /* Align items to the top */
  }

  .about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .about-person {
    flex: 1 1 100%; /* Each person takes full width */
    max-width: 100%; /* Max width for full width */
    display: flex;
    flex-direction: column; /* Keep column for overall card alignment */
    align-items: center;
    text-align: center;
    margin-bottom: 40px; /* Add space between the two people */
  }

  .person-content {
    display: flex;
    align-items: flex-start; /* Align items to the top */
    gap: 20px; /* Space between image and text */
    width: 100%;
  }

  .person-image {
    flex: 0 0 200px; /* Increased image width */
    max-width: 200px; /* Increased image max-width */
    text-align: center;
  }

  .person-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .person-text {
    flex: 1; /* Allow text to take remaining space */
    text-align: left; /* Align text to the left within its column */
  }
  
  .founder-image {
    max-width: 100%;
    border-radius: 8px;
  }
  
  h3 { /* General h3 style */
    font-size: 1.8rem;
    margin-bottom: 15px; /* Standardized margin */
  }

  h4 { /* General h4 style */
    font-size: 1.2rem;
    margin-bottom: 10px; /* Standardized margin */
    color: #4a00e0; /* Keep brand color */
    font-weight: normal;
  }

  .about-text h3 { /* Override for about section if needed, but general h3 should apply */
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .about-text h4 { /* Override for about section if needed, but general h4 should apply */
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #4a00e0;
    font-weight: normal;
  }
  
  .about-text p {
    margin-bottom: 15px;
    line-height: 1.5;
  }

  ul {
    list-style: disc; /* Default disc style */
    margin-left: 20px; /* Indent lists */
    margin-bottom: 15px; /* Consistent with paragraph spacing */
  }

  li {
    margin-bottom: 8px; /* Spacing between list items */
    line-height: 1.5; /* Consistent line height */
  }

  /* Specific styles for the section below the two profiles */
  .about-section-bottom-text {
    text-align: left; /* Align text to the left */
    margin-top: 80px; /* Increased margin for better separation */
    max-width: 900px; /* Constrain width for readability */
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px; /* Add some horizontal padding */
  }

  .about-section-bottom-text h3 {
    text-align: center; /* Keep headings centered */
    margin-bottom: 25px; /* More space below headings */
  }

  .about-section-bottom-text p {
    margin-bottom: 20px; /* More space between paragraphs */
  }

  .about-section-bottom-text ul {
    list-style: none; /* Remove default bullets */
    padding: 0;
    margin: 0;
  }

  .about-section-bottom-text li {
    position: relative;
    padding-left: 25px; /* Space for custom bullet */
    margin-bottom: 15px; /* Space between list items */
    line-height: 1.6;
  }

  .about-section-bottom-text li::before {
    content: '•'; /* Custom bullet point */
    color: #4a00e0; /* Brand color for bullet */
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
  }
  
  /* ================================
     7. TRAININGEN SECTION
  ================================ */
.trainingen {
    padding: 80px 0;
    background-color: #f9fafb;
}

.training-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.training-info {
    flex: 2;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 95, 122, 0.1);
}

.training-intro {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.6;
    font-weight: 300;
}

.training-benefits {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    background-color: #f4f7f6;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    font-size: 2rem;
    margin-right: 20px;
    color: #1a5f7a;
    opacity: 0.7;
}

.benefit-text h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #1a5f7a;
    letter-spacing: -0.5px;
}

.benefit-text p {
    line-height: 1.6;
    color: #2c3e50;
    opacity: 0.9;
    font-size: 0.95rem;
}

.training-cta {
    margin-top: 40px;
    background-color: #f4f7f6;
    padding: 30px;
    border-radius: 8px;
}

.training-cta p {
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 500;
}

.training-cta h3 {
    color: #1a5f7a;
    margin-bottom: 20px;
}

.training-cta ul {
    list-style-type: none;
    padding: 0;
}

.training-cta li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.training-cta li::before {
    content: '•';
    color: #1a5f7a;
    position: absolute;
    left: 0;
    top: 0;
}

.training-quotes {
    flex: 1;
    text-align: left;
}

.quote-container .quote {
    margin-bottom: 30px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #1a5f7a;
    transition: all 0.3s ease;
}

.quote-container .quote:hover {
    transform: translateY(-5px);
}

.quote-container .quote p {
    font-style: italic;
    color: #2c3e50;
    line-height: 1.6;
}

.quote cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    color: #1a5f7a;
    font-weight: 500;
}
  
  /* ================================
     8. TESTIMONIALS SECTION
  ================================ */
  .testimonials {
    background-color: #f4f7f6;
    padding: 60px 0;
    text-align: center;
  }
  
  .testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .testimonial-slides {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
  }
  
  .testimonial-slide {
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }
  
  .testimonial-text {
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #2c3e50;
    font-style: italic;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 0 30px;
  }

  .testimonial-text::before,
  .testimonial-text::after {
    content: '"';
    position: absolute;
    font-size: 3rem;
    color: #1a5f7a;
    opacity: 0.3;
  }

  .testimonial-text::before {
    left: 0;
    top: -10px;
  }

  .testimonial-text::after {
    right: 0;
    bottom: -20px;
  }
  
  .testimonial-author {
    color: #1a5f7a;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #1a5f7a;
    margin: 0 5px;
    cursor: pointer;
    opacity: 0.3;
    transition: all 0.3s ease;
  }
  
  .slider-dot.active,
  .slider-dot:hover {
    opacity: 1;
    transform: scale(1.2);
  }
  
  /* ================================
     9. CONTACT SECTION
  ================================ */
  .contact {
    padding: 80px 0;
    background-color: #f9fafb;
    text-align: center;
  }
  
  .contact-options {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    justify-content: center;
    align-items: stretch;
  }
  
  .contact-option {
    flex: 0 1 400px;
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 95, 122, 0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
  }

  .contact-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }
  
  .contact-option h3 {
    color: #1a5f7a;
    margin-bottom: 20px;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
  }

  .contact-option p {
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .contact-form {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .form-group {
    margin-bottom: 20px;
    text-align: left;
  }

  .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1a5f7a;
    font-weight: 500;
  }
  
  .form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e6ed;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: 'Roboto', Arial, sans-serif;
    transition: all 0.3s ease;
    background-color: #f9fafb;
  }

  .form-control:focus {
    border-color: #1a5f7a;
    box-shadow: 0 0 0 2px rgba(26, 95, 122, 0.1);
    outline: none;
  }
  
  #formStatus {
    margin-top: 15px;
    text-align: center;
    display: none;
  }
  
  .btn-submit {
    width: 100%;
    background-color: #1a5f7a;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }

  .btn-submit:hover {
    background-color: #137094;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  }
  
  .contact-info {
    margin-top: 30px;
    text-align: left;
  }

  .contact-info p {
    margin-bottom: 15px;
    color: #2c3e50;
    line-height: 1.6;
  }

  .contact-details {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #1a5f7a;
  }

  .contact-details i {
    margin-right: 10px;
    color: #1a5f7a;
  }
  
  /* ================================
     10. FOOTER
  ================================ */
  footer {
    background-color: #f5f5f5;
    padding: 40px 0;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-around;
    gap: 50px;
    align-items: flex-start;
  }
  
  .footer-column {
    flex: 1 1 auto;
    min-width: 200px;
  }
  
  .footer-column h3 {
    margin-bottom: 15px;
    font-size: 1.5rem; /* Slightly larger for prominence in footer */
  }
  
  .footer-column p {
    margin-bottom: 10px;
  }
  
  .social-links {
    margin-top: 10px;
  }
  
  .social-icon {
    text-decoration: none;
    color: #333;
    margin-right: 10px;
    font-weight: bold;
  }
  
  .footer-links {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 8px;
  }
  
  .footer-links a {
    text-decoration: none;
    color: #333;
  }
  
  .footer-bottom {
    margin-top: 20px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
  }
  
  /* ================================
     11. MEDIA QUERIES
  ================================ */
  /* Mobile styles tot 768px */
  @media (max-width: 768px) {
    /* Header */
    .header-content {
      flex-direction: column;
      justify-content: center;
    }
    .burger {
      display: flex; /* Burger zichtbaar op mobiel */
    }
    .nav-menu {
      display: none; /* Standaard verbergen op mobiel */
      flex-direction: column;
      align-items: center;
      width: 100%;
      margin-top: 20px;
    }
    .nav-item {
      margin: 10px 0;
    }
  
  /* Hero */
  .hero {
    padding: 120px 20px 80px; /* Consistent with desktop padding */
  }
    .hero-title {
      font-size: 1.8rem;
      line-height: 1.3;
    }
    .hero-subtitle {
      font-size: 1rem;
      line-height: 1.4;
    }
    .cta-buttons {
      flex-direction: column;
      gap: 15px;
    }
  
    /* Services */
    .services-grid {
      flex-direction: column;
    }
  
  /* About */
  .about-content {
    flex-direction: column;
    align-items: center;
  }

  .about-person {
    flex: 1 1 100%; /* Stack on mobile */
    max-width: 100%;
    margin-bottom: 30px; /* Add space between stacked profiles */
  }

  .about-person:last-of-type {
    margin-bottom: 0; /* No margin for the last one */
  }

  .about-person .person-content {
    flex-direction: column; /* Stack image and text vertically on mobile */
    align-items: center;
    text-align: center;
  }

  .about-person .person-image {
    margin-bottom: 15px; /* Space between image and text on mobile */
  }

  .about-person .person-text {
    text-align: center; /* Center text on mobile */
  }
  
    /* Trainingen */
    .training-content {
      flex-direction: column;
    }
    .training-quotes {
      margin-top: 30px;
      text-align: left;
    }
  
    /* Contact */
    .contact-options {
      flex-direction: column;
      gap: 40px;
    }
    .contact-option {
      text-align: center;
      flex: 1 1 100%;
    }
    
    .contact-form {
      max-width: 100%;
      margin: 0 auto;
    }
  
    /* Footer */
    .footer-content {
      flex-direction: column;
      text-align: center;
    }
    .footer-column {
      margin-bottom: 20px;
    }

  }

/* Gray Submit Button Styling */
.btn-submit {
  display: inline-block;
  background-color: #666666;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
  text-align: center;
}

.btn-submit:hover {
  background-color: #555555;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-submit:active {
  background-color: #444444;
}

/* Remove the icon */
.btn-submit::before {
  content: none;
}


/* --- Over Ons refresh additions --- */
/* Core styles inherited from your file are kept. Only additions/edits relevant to Over Ons and polish follow.
   If you want the full stylesheet merge, copy your existing styles.css and append the blocks below. */

/* ---------- ABOUT (Over Ons) refresh ---------- */
.about {
  padding: 80px 0;
  background: linear-gradient(180deg, #f7f9fb 0%, #ffffff 100%);
}

.about-kicker{
  text-align:center;
  max-width:800px;
  margin: 0 auto 24px;
  color:#41576a;
  font-size:1.05rem;
}

.about-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:32px;
  align-items:start;
}

.about-card{
  display:flex;
  gap:20px;
  background:#fff;
  border:1px solid rgba(26,95,122,.10);
  border-radius:16px;
  padding:24px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
  height:100%;
}

.about-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,.08);
}

.about-photo{
  flex:0 0 160px;
}

.about-photo img{
  width:160px;
  height:160px;
  object-fit:cover;
  border-radius:12px; /* use 50% for circle if preferred */
}

.about-body{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.about-name{
  font-size:1.35rem;
  line-height:1.2;
  margin:0;
  color:#1a5f7a;
}

.about-role{
  margin:0;
  color:#4a00e0;
  font-weight:500;
}

.about-text{
  margin-top:4px;
  color:#2c3e50;
  line-height:1.6;
}

.about-tags{
  margin-top:6px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  list-style:none;
  padding:0;
}

.about-tags li{
  font-size:.9rem;
  padding:6px 10px;
  border-radius:999px;
  background:#f0f6f8;
  border:1px solid rgba(26,95,122,.15);
}

/* Bottom extras */
.about-extra{
  max-width:900px;
  margin:40px auto 0;
}

.about-extra h3{
  text-align:center;
  margin-bottom:16px;
}

.checklist{
  list-style:none;
  padding:0;
  margin:0;
}

.checklist li{
  position:relative;
  padding-left:28px;
  margin:12px 0;
  line-height:1.6;
}

.checklist li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#1a5f7a;
  font-weight:700;
}

/* Responsive */
@media (max-width: 900px){
  .about-grid{
    grid-template-columns: 1fr;
  }
  .about-photo{ flex:0 0 120px; }
  .about-photo img{ width:120px; height:120px; }
}



/* ---------- TEAM SECTION (OVER ONS) ---------- */
.team { padding: 80px 0; }
.team .subtitle { max-width: 800px; text-align: center; margin: 0 auto 40px; color: #555; }
.team-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.team-card { max-width: 380px; background: #fff; padding: 20px; border-radius: 14px; border: 1px solid #e1e1e1; box-shadow: 0 6px 18px rgba(0,0,0,.06); text-align: left; }
.team-card img { width: 100%; height: 340px; object-fit: cover; border-radius: 12px; }
.team-card .role { font-weight: 600; color: #0077aa; margin-bottom: 10px; }
.team-result { margin-top: 40px; text-align: center; }
.team-result ul { list-style: none; padding: 0; }
.team-result li::before { content: "✓ "; color: #0077aa; font-weight: bold; }
@media (max-width: 820px){ .team-grid { flex-direction: column; align-items: center; } }

/* CTA onder Over Ons */
.team-cta { text-align: center; margin-top: 50px; padding: 40px 20px; border-radius: 16px; background: linear-gradient(135deg, #0077aa 0%, #00b7d6 100%); color: #fff; }
.team-cta h3 { margin-bottom: 10px; font-size: 1.7rem; }
.team-cta p { margin-bottom: 22px; font-size: 1.1rem; }
.btn-cta { display: inline-block; padding: 14px 28px; background: #fff; color: #0077aa; font-weight: 600; border-radius: 8px; text-decoration: none; transition: .2s ease; }
.btn-cta:hover { transform: translateY(-3px); }