 :root {
            --primary-color: #1f94c7;
            --primary-dark: #25467c;
            --secondary-color: #6c757d;
            --dark-color: #1a1a2e;
            --light-color: #f8f9fa;
            --text-color: #2c3e50;
            --border-color: #e1e8ed;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {   
			
  font-family: "Asap", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
            line-height: 1.6;
            color: var(--text-color);
            background-color: #fff;
            overflow-x: hidden;
        }
/* ----------------------------------
   Typography & Content Elements
---------------------------------- */

h1, h2, h3, h4, h5, h6 {
    font-family: "Asap", sans-serif;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    line-height: 1.3;
    transition: var(--transition);
  
}

/* Headings */
h1 {
    font-size: 2.4rem;
   
    padding-bottom: 0.3em;
}

h2 {
    font-size: 2rem;
   
   
}

h3 {
    font-size: 1.6rem;
    
}

h4 {
    font-size: 1.3rem;
    
}

h5 {
    font-size: 1.1rem;
    
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

h6 {
    font-size: 0.95rem;
    letter-spacing: 1px;
}

/* Paragraphs */
p {
    margin-bottom: 1.0em;
    font-size: 1.2rem;
    line-height: 1.7;
}

/* Lists */
ul, ol {
    margin: 1em 0 1em 2em;
}

ul li, ol li {
    margin-bottom: 0.5em;
    transition: var(--transition);
}

ul li:hover, ol li:hover {
    
}
.mx_icon_spacing {
  margin-right: 8px;
  display: inline-block;
}
.mx_icon_spacing::before {
    display: inline-block; /* zorgt dat margin werkt */
    margin-right: 8px;     /* ruimte na het icoon */
	    color: var(--primary-color);
}
a {color: var(--text-color); text-decoration: none;}
a:hover {color:#ff6600;}
.article-body.bootstrap-iso {
  position: relative;
  overflow: auto;
  scroll-behavior: smooth !important; /* "non" bestaat niet, dit is correct */
  -ms-overflow-style: none !important; /* verbergt scrollbars in IE/Edge */
  scrollbar-width: none !important; /* verbergt scrollbars in Firefox */
}

.article-body.bootstrap-iso::-webkit-scrollbar {
  display: none; /* verbergt scrollbars in Chrome, Safari, Opera */
}
.uniek-post-cont-hvr
 { background-color: rgba(0, 161, 218, 0.9) !important;
}
.uniek-post-anchor {
    margin: 25px auto;
    display: inline-block;
    width: auto;
    padding: 12px 15px;
    text-align: center;
    float: none;
    color: #000;
    text-decoration: none;
    background-size: 15px;
    color: white !important;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(233, 71, 34, 0.3);
    background: #f1883a;
}
.uniek-post-anchor:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 174, 239, 0.4);
}

/* Inline code */
code {
    background: #f3f9fc;
    color: var(--primary-dark);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    border: 1px solid var(--border-color);
}

/* Horizontal rule */
hr {
    border: 0;
    border-top: 2px solid var(--border-color);
    margin: 2em 0;
}


        .container, .container-blog {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
		
    position: relative;
        }

        /* Header Styles */
        .header {
            background: rgba(255, 255, 255, 0.98);
}
           
.main-header {
  position: relative;
  width: 100%;
  z-index: 1000;
  transition: top 0.3s ease, box-shadow 0.3s ease; /* vloeiende overgang */
  background: #fff; /* zodat hij niet transparant wordt */
}

/* Wanneer sticky actief wordt */
.main-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* optioneel, voor diepte */
}


        .top-bar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            padding: 12px 0;
            color: white;
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .search-container {
            flex: 1;
            max-width: 400px;
            position: relative;
        }

        .search-bar {
            position: relative;
            width: 100%;
        }

        .search-bar input {
            width: 100%;
            padding: 10px 45px 10px 15px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 25px;
            color: white;
            font-size: 0.95em;
            transition: var(--transition);
        }

        .search-bar input::placeholder {
            color: rgba(255, 255, 255, 0.8);
        }

        .search-bar input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.6);
            transform: translateY(-1px);
        }

        .search-bar button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .search-bar button:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.05);
        }

        .social-icons {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .social-icons a {
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2em;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
			text-decoration: none;
        }

        .social-icons a:hover {
            background: white;
            color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

.content {}
/* Custom UL styling */
.content ul {
    list-style: none;
    margin: 1em 0;
    padding-left: 0;
}

.content ul li {
    position: relative;
    padding-left: 1.8em;
    margin-bottom: 0.5em;
}

.content ul li::before {
    content: "✔";
    position: absolute;
  left: 5px;
    top: 5px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1em;
    line-height: 1;
}

/* Content Section - zelfde effect als Why Choose Us */
.content {
  background: linear-gradient(to bottom, #ffffff, #f3f8fc);
 padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.content::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle at center, rgba(0, 174, 239, 0.06) 0%, transparent 70%);
  animation: floatBG 10s ease-in-out infinite alternate;
  z-index: 0;
}

/* Zorg dat de inhoud erboven blijft */
.content .container, .content .container-blog {
  position: relative;
  z-index: 1;
}



/* Ordered list markers */
ol li::marker {
    color: var(--secondary-color);
    font-weight: bold;
}

.contact-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Bestaande stijl behouden */
.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2em;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.social-icons a:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Nieuwe adviesknop */
.advies-btn {
    background: var(--primary-color);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid transparent;
}

.advies-btn:hover {
    background: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
        }

        .logo img {
          
		    max-height: 64px;
    width: 100%;
    transition: var(--transition);
    margin-top: 10px;
        }

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

        

        /* Hero Slider */
        .hero-slider {
            position: relative;
            height: 950px;
            overflow: hidden;
            background: linear-gradient(135deg, var(--dark-color) 0%, #25467c 100%);
        }

.slider-item h2 {
  display: inline-block; /* of block, afhankelijk van layout */
  text-align: center;
  margin-bottom: 20px;
}

.slider-item h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  margin: 10px auto 0; /* afstand boven het streepje en centreren */
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  border-radius: 2px;
}


        .slider-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slider-item.active {
            opacity: 1;
        }

        .slider-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.8);
        }

        .slider-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
			    max-width: 511px;
            text-align: center;
            color: white;
            z-index: 2;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translate(-50%, -40%);
            }
            to {
                opacity: 1;
                transform: translate(-50%, -50%);
            }
        }

.slider-overlay h2 {
    font-size: clamp(2rem, 5vw, 4em); /* minimum 2rem, groeit met 5vw, max 4em */
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.slider-overlay p {
    font-size: clamp(1rem, 2.5vw, 1.5rem); /* minimum 1rem, groeit met 2.5vw, max 1.5rem */
    margin-bottom: 1em;
    line-height: 1.7;
}


        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
            cursor: pointer;
            z-index: 3;
            transition: var(--transition);
        }

        .slider-arrow:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-50%) scale(1.1);
        }

        .slider-arrow.left { left: 30px; }
        .slider-arrow.right { right: 30px; }

.hero-single {
    position: relative;
    height: 300px; /* smal, bovenin de contentpagina */
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-color) 0%, #25467c 100%);
}

.hero-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.hero-single {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-color) 0%, #25467c 100%);
}

.hero-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.hero-single .slider-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 511px;
    text-align: center;
    color: white;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-single .slider-overlay h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-single .slider-overlay h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    margin: 10px auto 0;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

.hero-single .slider-overlay p {
    font-size: 1em;
    margin-bottom: 15px;
}





        /* Info Blocks */

 .info-blocks.home {
			    margin-top: -270px;
           
        }

        .info-blocks {
			    margin-top: 0px;
            padding: 80px 0;
            background: linear-gradient(to bottom, var(--light-color), white);
			 border-top: solid 15px #f1883a;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .info-block {
            background: white;
            padding: 40px 30px;
            text-align: center;
            border-radius: 20px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid var(--border-color);
			   
        }

        .info-block:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-color);
        }

        .icon-circle {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            border-radius: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 2.2em;
            margin: 0 auto 25px;
            box-shadow: 0 8px 24px rgba(0, 174, 239, 0.3);
            transition: var(--transition);
        }

        .info-block:hover .icon-circle {
            transform: rotateY(360deg);
        }

        .info-block h3 {
            font-size: 1.5em;
            margin-bottom: 15px;
            color: var(--dark-color);
        }

        .info-block p {
            color: var(--secondary-color);
            margin-bottom: 20px;
            line-height: 1.7;
        }


/* Intro Columns Section */
.intro-columns {
    background: linear-gradient(135deg, var(--dark-color) 0%, #25467c 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
/*.intro-columns::after {
  content: "";
    position: absolute;
    top: 0;
    right: -65px;
    width: 30%;
    height: 100%;
    background: url(../images/Meenderman_Beeldmerk_Def.svg) no-repeat center center;
    background-size: contain;
    transform: rotate(-17deg);
    z-index: 1;
    pointer-events: none;
}*/




.duo-column-text {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
}

.duo-left, .duo-right {
  flex: 1;
}

.duo-left {
  max-width: 50%;
}

.duo-right {
  max-width: 50%;
}

@media (max-width: 768px) {
  .duo-column-text {
    flex-direction: column;
  }

  .duo-left, .duo-right {
    max-width: 100%;
	  width: 100%;
  }
}

.multi-column-text {
    column-count: 2;
    column-gap: 40px;
    column-rule: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    color: var(--light-color);
    line-height: 1.8;
    font-size: 1em;
}

@media (max-width: 992px) {
    .multi-column-text {
        column-count: 2;
        column-gap: 30px;
    }

}

@media (max-width: 600px) {
    .multi-column-text {
        column-count: 1;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .intro-item {
        padding: 30px 20px;
    }

    .intro-item h3 {
        font-size: 1.3em;
    }
}




        .btn-learn-more {
            display: inline-block;
            background: #f1883a;
            color: white;
            padding: 12px 28px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.85em;
            letter-spacing: 0.5px;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(233, 71, 34, 0.3);
        }

        .btn-learn-more:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 174, 239, 0.4);
        }

        /* System Management */
        .system-management {
            padding: 80px 0;
            background: white;   
			 border-top: solid 15px #f1883a;
        }



.system-management .section-title h2 {color: var(--dark-color);}

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5em;
            color: var(--light-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
            border-radius: 2px;
        }

        .system-management-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
			
        }

        .system-management-item {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid var(--border-color);
			
        }

        .system-management-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.5s ease;
        }

        .system-management-item:hover::before {
            left: 100%;
        }

        .system-management-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .icon-box {
            width: 90px;
            height: 90px;
            background: white;
            color: var(--primary-color);
            border-radius: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 2.5em;
            margin: 0 auto 25px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .system-management-item:hover .icon-box {
            transform: scale(1.1) rotate(5deg);
            box-shadow: var(--shadow-md);
        }

        /* Why Choose Us */
        .why-choose-us {
           background: linear-gradient(to bottom, #ffffff, #f3f8fc);
            color: black;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
.why-choose-us::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle at center, rgba(0, 174, 239, 0.06) 0%, transparent 70%);
    animation: floatBG 10s 
ease-in-out infinite alternate;
}


       

        .why-choose-us .section-title h2 {
            color: black;
        }

        .why-choose-us .section-title h2::after {
          
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;

        }

        .why-choose-us h3 {
           
            margin-bottom: 15px;
        }

        .why-choose-us p {
            color: #666;
            line-height: 1.8;
        }

/* Clients */
.our-clients {
    padding: 80px 0;
    background: var(--light-color);
}
.our-clients h2 { 
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 40px;
}

/* Logo Grid */
.client-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    justify-items: center;
    align-items: center;
}

/* Witte vakjes rondom logo's */
.client-logos .logo-wrapper {
    background: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;  /* hoogte van vakje */
    width: 150px;   /* breedte van vakje */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* optionele schaduw */
    transition: transform 0.3s;
    border-radius: 8px; /* afgeronde hoeken */
}

/* Logo styling */
.client-logos .logo-wrapper img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: filter 0.3s, transform 0.3s;
}

.client-logos .logo-wrapper img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}


        /* Footer */

        .footer {
            background: linear-gradient(135deg, #1a1a2e 0%, #25467c 100%);
            color: white;
            padding: 60px 0 20px;
            position: relative;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.3em;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 2px;
        }

        .footer-col p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            font-size: 0.95em;
        }
.footer-col  a {color:#fff;}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Voeg vinkjes toe aan alle li behalve in .no-check */
.footer-col:not(.no-check) ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95em;
}

.footer-col:not(.no-check) ul li::before {
    content: "✔";           /* Vinkje */
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 8px;
    font-size: 1em;
    line-height: 1;
}



        .footer-col ul li i {
            margin-right: 12px;
            color: var(--primary-color);
            font-size: 1.2em;
        }

        .newsletter-form {
            display: flex;
            margin-top: 20px;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 20px;
            border: none;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: white;
            font-size: 0.95em;
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .newsletter-form button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            cursor: pointer;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9em;
            letter-spacing: 0.5px;
            transition: var(--transition);
        }

        .newsletter-form button:hover {
            background: var(--primary-dark);
        }

        .social-icons-footer {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .social-icons-footer a {
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3em;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
			text-decoration:none;
        }

        .social-icons-footer a:hover {
            background: var(--primary-color);
            border-color: var(--primary-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            margin-top: 30px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9em;
        }
.footer-bottom p span,.footer-bottom p span a  {font-size:11px; color:#ccc;}

/* maatwerk blog */

.uniek-post-cont-hvr {border-radius: 20px;}
/* FOTO links */
.uniek-top-cont li:first-child {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: hidden; /* zorgt dat de afbeelding de afgeronde hoeken volgt */
}

/* TEKST rechts */
.uniek-top-cont li:nth-child(2) {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
/* FOTO bovenaan */
.main-container-div-for-background .uniek-image-cont {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden; /* zorgt dat de afbeelding de ronde hoeken volgt */
}

/* TEKSTVAK onderaan */
.main-container-div-for-background .uniek-post-cont-col {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* optioneel: als er een hover-div overheen komt */
.main-container-div-for-background .uniek-post-cont-hvr {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.uniek-post-cont li
 { 
    border-radius: 20px;
}
figure > img {
    width: 100% !important;
    border-radius: 20px;
}
@media (max-width: 1450px) {

.hero-slider {
    position: relative;
    height: 650px;
	}
	
	.info-blocks {
    margin-top: -177px;
	}
	
}


/* MOBIEL: onder elkaar, dus foto boven, tekst onder */
@media (max-width: 769px) {
  .uniek-top-cont li:first-child {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .uniek-top-cont li:nth-child(2) {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}


        /* Responsive */
        @media (max-width: 992px) {
    
	 .info-blocks.home {
			    margin-top: 0px;
           
        }
			
            .slider-overlay h1 {
                font-size: 2.5em;
            }

            .hero-slider {
                height: 400px;
            }

          

            .top-bar-content {
                flex-direction: column;
            }

            .search-container {
                max-width: 100%;
            }
        }

        @media (max-width: 576px) {
			
			  .grid-3 {
                grid-template-columns: 1fr;
            }
			
            .slider-overlay h1 {
                font-size: 2em;
            }

            .section-title h2 {
                font-size: 2em;
            }

            .hero-slider {
                height: 300px;
            }

            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 1.2em;
            }

            .slider-arrow.left { left: 15px; }
            .slider-arrow.right { right: 15px; }
        }




/* Parallax Section */
.parallax-section {
    position: relative;
    background-image: url("../images/aerial-view-nijmegen-with-waal-river-de-oversteek-bridge.webp");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 100px 20px;
    z-index: 1;
}

@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll; /* fallback voor mobiel */
        background-position: center;
    }
}
/*.parallax-section::after {
  content: "";
    position: absolute;
    top: 0;
    right: -65px;
    width: 30%;
    height: 100%;
    background: url(../images/Meenderman_Beeldmerk_Def.svg) no-repeat center center;
    background-size: contain;
    transform: rotate(-17deg);
    z-index: 0;
    pointer-events: none;
}
*/

.parallax-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45); /* donkere overlay voor betere leesbaarheid */
    z-index: 0;
}

.parallax-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}
.parallax-content img {
   width:100%;
	height:auto;
	max-width:400px;
}
.parallax-content h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.parallax-content p {
    font-size: 1.1em;
    line-height: 1.8;
}

/* Mobiele weergave */
@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll; /* Fix voor iOS en Android (geen fixed ondersteuning) */
        min-height: 300px;
    }

    .parallax-content h2 {
        font-size: 1.6em;
    }

    .parallax-content p {
        font-size: 1em;
    }
}
/* CTA Button in Slider */
.cta-button {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 35px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    font-size: 1em;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
	color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }
}

@media (max-width: 680px) {

.main-header.sticky {position: fixed;border-top: 10px solid #fff;
    }
}
.container, .article-content-frame {
        padding: 0 20px !important;
        width: 100% !important;
    }


h2 {

}
