/* Enable smooth scrolling */
html {
    scroll-behavior: smooth;
  }
  
  /* -------------------------------
     RESET & GLOBAL STYLES
  --------------------------------- */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
  }
  
  /* Reusable container */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* -------------------------------
     NAVBAR
  --------------------------------- */
  .navbar {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 10px 0; /* zowel boven als onder 10px */
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }

  .logo img {
    max-width: 150px; /* Stel hier de gewenste maximale breedte in */
    height: auto;     /* Houd de verhouding in stand */
  }
  
  .navbar nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .navbar nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .navbar nav ul li a:hover {
    color: #007BFF;
  }
  
  /* Navbar container flex */
  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  /* -------------------------------
     HERO SECTION
  --------------------------------- */
  .hero {
    background-color: #222;
    color: #fff;
    padding: 60px 0;
    text-align: center;
  }
  
  .profile-photo {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid #666;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  
  .tag-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  
  .tag-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #444;
    color: #fff;
    border: none;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.2s;
  }
  
  .tag-button:hover {
    background-color: #666;
  }
  
  .tag-button:active {
    background-color: #333;
  }
  
  /* -------------------------------
     SERVICE SECTIONS (GENERAL)
  --------------------------------- */
  .service-section {
    padding: 60px 0;
  }
  
  .service-section .container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
  }
  
  /* Layout for service sections */
  .service-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
  }
  
  .service-section .text-content {
    flex: 1;
  }
  
  .service-section .text-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .service-section .text-content p {
    margin-bottom: 10px;
  }
  
  .service-section .text-content .subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: #555;
    margin-bottom: 20px;
  }
  
  .service-section .image-content {
    flex: 1;
    text-align: center;
  }
  
  .service-section .image-content img {
    max-width: 100%;
    border-radius: 6px;
  }
  
  /* -------------------------------
     IMAGE OVERLAY
  --------------------------------- */
  .image-overlay {
    position: relative;
    display: inline-block;
  }
  
  .image-overlay img {
    display: block;
    width: 100%;       /* Force image to fill container width */
    max-width: 100%;   /* But never exceed container */
    height: auto;
    border-radius: 6px;
  }
  
  .overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0,0,0,0.6);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
  }
  
  /* -------------------------------
     CTA BUTTON
  --------------------------------- */
  .cta-button {
    background-color: #111;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
    margin-top: 20px;  /* Default whitespace above button */
  }
  
  .cta-button:hover {
    background-color: #333;
  }
  
  .cta-button .arrow {
    font-size: 1.2rem;
    line-height: 1;
  }
  
  /* -------------------------------
     KEY BENEFITS
  --------------------------------- */
  .key-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: 10px;
    list-style: none;
    margin-top: 20px;
    padding-left: 0;
  }
  
  .key-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .icon-check {
    color: #007BFF;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
  }
  
  /* -------------------------------
     FOOTER
  --------------------------------- */
  footer {
    background-color: #222;
    color: #ccc;
    padding: 40px 0;
  }
  
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .footer-brand h3 {
    color: #fff;
    margin-bottom: 10px;
  }
  
  .footer-links h4 {
    color: #fff;
    margin-bottom: 10px;
  }
  
  .footer-links ul {
    list-style: none;
  }
  
  .footer-links ul li {
    margin-bottom: 5px;
  }
  
  .footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-links ul li a:hover {
    color: #fff;
  }
  
  .footer-contact h4 {
    color: #fff;
    margin-bottom: 10px;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid #444;
    padding-top: 20px;
  }
  
  .footer-bottom p {
    margin-bottom: 10px;
  }
  
  .footer-bottom a {
    color: #ccc;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s;
  }
  
  .footer-bottom a:hover {
    color: #fff;
  }
  
  .footer-contact a {
    color: #ccc;
    text-decoration: none;
    margin: 0;
    transition: color 0.3s;
  }
  
  .footer-contact a:hover {
    color: #fff;
  }
  
  .light-grey-bg {
    background-color: #f9f9f9;
  }

  /* Default: show desktop overlay, hide mobile overlay */
  .desktop-only {
    display: block;
  }
  .mobile-only {
    display: none;
  }
  
  /* -------------------------------
     RESPONSIVE STYLES
  --------------------------------- */
  @media (max-width: 768px) {
    /* Prevent horizontal overflow */
    html, body {
      overflow-x: hidden;
    }
    /* Stack navbar */
    .navbar .container {
      flex-direction: column;
    }
    /* Force service layout to stack vertically */
    .service-layout {
      flex-direction: column;
      gap: 20px;
    }
    .service-section .container {
      flex-direction: column;
    }
    .text-content,
    .image-content {
      width: 100%;
    }
    /* Increase whitespace above the CTA button on mobile */
    .cta-button {
      margin-top: 40px;
    }
    /* Adjust image overlay on mobile to remove side whitespace */
    .image-overlay {
      display: block;
      width: 100%;
      overflow: hidden;
    }
    .image-overlay img {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
    }
    /* Adjust image container: extend to viewport, but cap at 100vw */
    .service-section .image-content {
      margin-left: -20px;
      margin-right: -20px;
      width: calc(100% + 40px);
      max-width: 100vw;
    }
      /* Hide the Enterprise IT Leadership image on mobile */
    #enterprise-it-leadership .image-content {
        display: none;
    }
    /* Footer: stack columns and align them to left */
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-top > div {
      width: 100%;
      text-align: left;
    }
    .desktop-only {
        display: none;
      }
      .mobile-only {
        display: block;
      }
  }
  