:root {
    --primary-color: #2AE1A3;
    --text-color: #3A3A3A;
    --white: #ffffff;
    --gradient-bg: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles - Compactere menubalk */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem; /* Verminderde padding boven en onder */
    height: 80px; /* Vaste hoogte voor de header */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem; /* Iets kleinere ruimte tussen menu-items */
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem; /* Iets kleinere tekst */
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

/* Aanpassing voor de main content om ruimte te maken voor de fixed header */
main {
    padding-top: 80px; /* Moet overeenkomen met de hoogte van de header */
}

/* Hero Section Optimization */
.hero {
    position: relative;
    padding: 80px 0 60px; /* Verminderde padding */
    background-color: var(--white);
    overflow: hidden;
    min-height: auto; /* Verwijder vaste hoogte */
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.accent-line {
    position: absolute;
    top: 10%;
    right: -5%;
    width: 60%;
    height: 80%;
    background-color: transparent;
    border-left: 6px solid var(--primary-color);
    transform: rotate(15deg);
    z-index: -1; /* Plaatst de lijn achter de tekst */
}

.accent-stripes {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 120px;
    height: 200px;
    background: repeating-linear-gradient(
        45deg,
        var(--primary-color),
        var(--primary-color) 3px,
        transparent 3px,
        transparent 15px
    );
    z-index: -1; /* Plaatst de strepen achter de tekst */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.hero-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem; /* Minder ruimte */
}

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.hero h1 .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

/* Optioneel: voeg een subtiel effect toe aan de highlight */
.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    opacity: 0.3;
}

.hero-text {
    font-size: 1.1rem; /* Kleinere tekst */
    line-height: 1.5;
    margin-bottom: 1.5rem; /* Minder ruimte */
    color: #666;
    max-width: 540px;
}

/* Verbeterde CTA Button Styling 2.0 */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #20c997 100%);
    color: var(--text-color);
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 6px 20px rgba(42, 225, 163, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    font-size: 1.05rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(42, 225, 163, 0.5);
    color: var(--text-color);
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(42, 225, 163, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button svg {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(3px);
}

/* Secondary CTA Button */
.cta-button.secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(42, 225, 163, 0.15);
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #20c997 100%);
    color: var(--text-color);
    border-color: transparent;
}

/* CTA Sections Styling */
.services-cta, .contact-cta, .bottom-cta .cta-content {
    text-align: center;
    margin-top: 3rem;
}

.bottom-cta {
    background-color: #f9f9fa;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.bottom-cta::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(42, 225, 163, 0.1), transparent 70%);
    border-radius: 50%;
}

.bottom-cta::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(42, 225, 163, 0.1), transparent 70%);
    border-radius: 50%;
}

.bottom-cta .cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.bottom-cta .cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
    
    .bottom-cta .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .bottom-cta .cta-content p {
        font-size: 1.1rem;
    }
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
        min-height: auto; /* Laat de hoogte automatisch bepalen op mobiel */
    }
    
    .hero-content {
        padding: 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .accent-line {
        width: 80%;
    }

    .accent-stripes {
        width: 80px;
        height: 150px;
        right: 5%;
    }
    
    .hero-content {
        max-width: 100%;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(42, 225, 163, 0.15);
}

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

/* Statistics Section */
.statistics {
    padding: 4rem 0;
    background-color: #f9f9fa;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1;
}

.stat-unit {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-left: 0.2rem;
}

.stat-item p {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    color: #666;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-unit {
        font-size: 1.6rem;
    }
    
    .stat-item p {
        font-size: 1rem;
    }
}

/* Testimonial Section */
.testimonial {
    padding: 60px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 225, 163, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
    z-index: 0;
}

.testimonial .container {
    position: relative;
    z-index: 1;
}

blockquote {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 3rem 2.5rem;
    background: var(--white);
    border-radius: 12px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

blockquote:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(42, 225, 163, 0.15);
}

blockquote::before {
    content: '"';
    font-size: 6rem;
    color: var(--primary-color);
    position: absolute;
    top: -20px;
    left: 20px;
    opacity: 0.2;
    font-family: 'Georgia', serif;
}

blockquote p {
    font-style: italic;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    color: #444;
}

blockquote footer {
    margin-top: 1.5rem;
    font-weight: 500;
    text-align: right;
    color: #555;
}

blockquote cite {
    font-style: normal;
    font-weight: 600;
    position: relative;
    padding-left: 1.5rem;
}

blockquote cite::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1rem;
    height: 2px;
    background-color: var(--primary-color);
    transform: translateY(-50%);
}

/* Responsive aanpassingen voor testimonial */
@media (max-width: 768px) {
    .testimonial {
        padding: 40px 0;
    }
    
    blockquote {
        padding: 2.5rem 1.5rem 2rem;
    }
    
    blockquote::before {
        font-size: 4rem;
        top: -10px;
        left: 10px;
    }
    
    blockquote p {
        font-size: 1rem;
    }
}

/* Footer - Sophisticated and premium design */
.main-footer {
    background-color: #1a2a36;
    color: #ecf0f1;
    padding: 4rem 0 2rem;
    margin-top: 3rem;
    position: relative;
    box-shadow: inset 0 15px 15px -15px rgba(0,0,0,0.2);
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #18cb96;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-info .footer-logo {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: background-color 0.3s ease;
}

.footer-info .footer-logo:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-info .footer-logo img {
    max-width: 180px;
    height: auto;
    filter: brightness(1.1);
}

.footer-tagline {
    color: rgba(236, 240, 241, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-nav h4, .footer-services h4, .footer-contact-info h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 0.8rem;
    letter-spacing: 0.05em;
}

.footer-nav h4::after, .footer-services h4::after, .footer-contact-info h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #18cb96;
}

.footer-nav ul, .footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li, .footer-services ul li {
    margin-bottom: 0.8rem;
}

.footer-nav ul li a, .footer-services ul li a {
    color: rgba(236, 240, 241, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
    font-size: 0.85rem;
}

.footer-nav ul li a:hover, .footer-services ul li a:hover {
    color: #18cb96;
    padding-left: 5px;
}

.footer-nav ul li a::before, .footer-services ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: #18cb96;
    transition: width 0.3s ease;
    opacity: 0;
}

.footer-nav ul li a:hover::before, .footer-services ul li a:hover::before {
    width: 100%;
    opacity: 1;
}

.footer-contact-info .contact-details p {
    margin-bottom: 1rem;
    color: rgba(236, 240, 241, 0.7);
    font-size: 0.85rem;
}

.footer-contact-info .contact-details a {
    color: rgba(236, 240, 241, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-contact-info .contact-details a:hover {
    color: #18cb96;
}

.footer-contact-info .contact-details a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #18cb96;
    transition: width 0.3s ease;
}

.footer-contact-info .contact-details a:hover::after {
    width: 100%;
}

.footer-contact-info .contact-details strong {
    color: #ffffff;
    font-weight: 500;
    margin-right: 0.5rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(236, 240, 241, 0.05);
}

.footer-copyright {
    margin-bottom: 1rem;
    text-align: center;
}

.footer-copyright p {
    color: rgba(236, 240, 241, 0.5);
    font-size: 0.8rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(236, 240, 241, 0.5);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-legal a:hover {
    color: #18cb96;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #18cb96;
    transition: width 0.3s ease;
}

.footer-legal a:hover::after {
    width: 100%;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-copyright {
        margin-bottom: 0;
        text-align: left;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.mobile-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
    .mobile-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 9;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    body.menu-open {
        overflow: hidden;
    }
}

/* Footer logo verbetering */
.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 120px;
    width: auto;
    object-fit: contain;
    background-color: white;
    padding: 12px;
    border-radius: 8px;
    filter: none;
}

@media (max-width: 768px) {
    .footer-logo img {
        height: 100px;
    }
}

/* Kleiner logo in de menubalk */
.logo img {
    height: 50px !important; /* !important zorgt ervoor dat deze regel voorrang krijgt */
    width: auto;
    transition: all 0.3s ease;
}

/* Optioneel: maak het logo nog kleiner op mobiele apparaten */
@media (max-width: 768px) {
    .logo img {
        height: 40px !important;
    }
}

/* Service Cards */
.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Services Detailed Page */
.services-detailed {
    padding: 80px 0;
}

.service-item {
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-header .service-icon {
    width: 36px; /* 25% smaller than homepage */
    height: 36px;
    color: var(--primary-color);
}

.service-description {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding-left: 1.5rem;
}

.service-features li {
    position: relative;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Methodology Section */
.methodology {
    padding: 80px 0;
    background: var(--gradient-bg);
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.methodology-item {
    text-align: center;
    padding: 2rem;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: var(--gradient-bg);
}

.cta-section h2 {
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section p {
    margin-bottom: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-header {
        flex-direction: column;
        text-align: center;
    }

    .methodology-grid {
        grid-template-columns: 1fr;
    }
}

/* Company Overview Section */
.company-overview {
    padding: 80px 0;
    background-color: var(--white);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.overview-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.5;
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
}

.global-experience {
    background-color: #f9f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.global-experience h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    position: relative;
    padding-bottom: 0.5rem;
}

.global-experience h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.continent-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.continent {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: calc(20% - 1rem);
}

.continent svg {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.continent span {
    font-size: 0.8rem;
    font-weight: 500;
}

.overview-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.overview-stat {
    text-align: center;
}

.overview-stat span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.overview-stat p {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.overview-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-statement {
    background-color: #f9f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.mission-statement::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right, rgba(42, 225, 163, 0.1), transparent 70%);
    border-radius: 0 0 0 100%;
}

.mission-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mission-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.mission-statement h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.mission-statement p {
    color: #666;
    line-height: 1.6;
}

/* Responsive aanpassingen */
@media (max-width: 992px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .continent {
        width: calc(33.33% - 1rem);
    }
}

@media (max-width: 768px) {
    .continent-icons {
        justify-content: center;
    }
    
    .continent {
        width: calc(50% - 1rem);
    }
    
    .overview-stats {
        justify-content: center;
    }
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--gradient-bg);
}

.founder-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.profile-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-bg);
    border-radius: 5px;
}

.profile-icon {
    width: 200px;
    height: 200px;
    color: var(--primary-color);
}

.profile-info h2 {
    margin-bottom: 0.5rem;
}

.profile-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.expertise-item ul {
    list-style: none;
    padding: 0;
}

.expertise-item li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.expertise-item li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Values Section */
.values-section {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background: var(--gradient-bg);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary-color);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 50%;
    padding-left: 3rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 50%;
    padding-right: 3rem;
    text-align: right;
}

.timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.year {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    border-radius: 20px;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .founder-profile {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0 0 0 2rem;
        padding: 1rem;
        text-align: left;
    }
}

/* Case Studies */
.cases {
    padding: 80px 0;
}

.case-study {
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.case-header {
    margin-bottom: 2rem;
}

.case-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.case-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.case-challenge,
.case-solution,
.case-results {
    padding: 1.5rem;
    background: var(--gradient-bg);
    border-radius: 5px;
}

.case-results ul {
    list-style: none;
    padding-left: 1.5rem;
}

.case-results li {
    position: relative;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
}

.case-results li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.case-quote {
    grid-column: 1 / -1;
    padding: 2rem;
    background: var(--gradient-bg);
    border-radius: 10px;
    position: relative;
    margin: 2rem 0;
}

.case-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: 0;
    left: 20px;
}

.case-quote cite {
    display: block;
    margin-top: 1rem;
    color: var(--text-color);
    font-style: normal;
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .case-details {
        grid-template-columns: 1fr;
    }

    .case-quote {
        padding: 1.5rem;
    }
}

/* Verbeterd contact gedeelte zonder iframe */
.contact-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-color);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.response-time {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--text-color);
}

.contact-item p {
    color: #666;
    font-size: 1.05rem;
}

.contact-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-cta {
    margin-top: 2rem;
    text-align: center;
}

.contact-cta .cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .contact-content {
        padding: 2rem;
    }
    
    .contact-info h3 {
        font-size: 1.6rem;
    }
    
    .response-time {
        font-size: 1rem;
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Category Tabs */
.category-tabs {
    display: none; /* Verberg de tabs */
}

/* Voor service items die gefilterd worden */
.service-item.hidden {
    display: none;
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 225, 163, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.clients-section .container {
    position: relative;
    z-index: 1;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.client-type {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.client-type:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(42, 225, 163, 0.15);
    border-top: 4px solid var(--primary-color);
}

.client-icon {
    width: 60px;
    height: 60px;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background-color: rgba(42, 225, 163, 0.1);
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.client-type:hover .client-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.client-type h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.client-type h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.client-type:hover h3::after {
    width: 80px;
}

.client-type p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: 1fr;
    }
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-image {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-bg);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.team-icon {
    width: 60px;
    height: 60px;
    color: var(--primary-color);
}

.team-info h3 {
    margin-bottom: 1rem;
}

/* Expertise Section */
.expertise-section {
    padding: 80px 0;
    background: var(--gradient-bg);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.expertise-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.expertise-card h3 {
    margin-bottom: 1.5rem;
}

.expertise-card ul {
    list-style: none;
    padding-left: 0;
}

.expertise-card li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.expertise-card li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Logo styling voor SVG */
.logo {
    display: flex;
    align-items: center;
    margin-top: 8px; /* Extra ruimte tussen bovenkant en logo */
}

.logo a {
    display: block;
}

.logo img {
    height: 70px; /* Iets kleiner om ruimte te maken */
    width: auto;
    object-fit: contain;
}

/* Nieuwe diensten layout */
.service-section {
    margin-bottom: 4rem;
}

.service-category-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.hero-subtitle {
    position: relative;
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
    display: inline-block;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 2px;
    background-color: var(--primary-color);
}

/* Verbeterde mobiele responsiviteit */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-text {
    font-size: 1rem;
  }
  
  .services-grid, .methodology-grid, .service-grid, .clients-grid, .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card, .service-item, .methodology-item, .client-type, .stat-item {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .cta-button {
    width: 100%;
    text-align: center;
    padding: 0.8rem 1rem;
  }
  
  .testimonial blockquote p {
    font-size: 1.1rem;
  }
  
  /* Mobiel menu styling */
  .nav-links {
    display: none; /* Standaard verborgen op mobiel */
  }
  
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  
  .nav-links.active li {
    margin: 0.5rem 0;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-logo, .footer-contact, .footer-copyright {
    margin-bottom: 1rem;
  }
}

/* Tablet responsiviteit */
@media (min-width: 481px) and (max-width: 768px) {
  .service-grid, .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero h1 {
    font-size: 2.4rem;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    z-index: 1000;
  }
}

/* Algemene responsieve verbeteringen */
img, svg {
  max-width: 100%;
  height: auto;
}

.mobile-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001; /* Zorg dat het menu boven andere elementen komt */
}

.mobile-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 5px 0;
  transition: 0.3s;
}

.mobile-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
  .mobile-menu {
    display: block; /* Toon hamburger menu op mobiel */
  }
  
  .nav-links {
    display: none; /* Verberg standaard navigatie op mobiel */
  }
  
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  
  .service-grid, .services-grid {
    grid-template-columns: 1fr; /* Zorg dat diensten onder elkaar staan op mobiel */
    gap: 1rem;
  }
  
  .service-card {
    margin-bottom: 1rem;
  }
}

/* Verbeterde subpagina hero sectie */
.services-hero {
    background-color: #f8f9fa;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.services-hero .accent-line {
    position: absolute;
    top: 40px; /* Vaste positie van bovenaf */
    right: -5%;
    width: 60%;
    height: 320px; /* Vaste hoogte */
    background-color: transparent;
    border-left: 6px solid var(--primary-color);
    transform: rotate(15deg);
    z-index: 1;
    opacity: 0.7;
}

.services-hero .accent-stripes {
    position: absolute;
    top: 60px; /* Vaste positie van bovenaf */
    right: 10%;
    width: 120px;
    height: 200px;
    background: repeating-linear-gradient(
        45deg,
        var(--primary-color),
        var(--primary-color) 3px,
        transparent 3px,
        transparent 15px
    );
    z-index: 1;
    opacity: 0.5;
}

/* Consistente hero content container */
.services-hero .hero-content {
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 8px;
    max-width: 650px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px; /* Zorgt voor consistente ruimte onderaan */
}

/* Consistente heading styling */
.services-hero h1 {
    font-size: 2.6rem;
    margin-bottom: 1.2rem;
    color: var(--text-color);
    position: relative;
    line-height: 1.2;
}

.services-hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Consistente hero text */
.services-hero .hero-text {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: #666;
}

/* Consistente highlight items */
.services-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.8rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    padding: 0.6rem 1rem;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-size: 0.9rem;
}

.highlight-icon {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.2rem;
    }
    
    .services-hero .accent-line,
    .services-hero .accent-stripes {
        opacity: 0.3;
    }
    
    .services-highlight {
        flex-direction: column;
    }
    
    .highlight-item {
        width: 100%;
    }
}

/* Fix voor de overlap in de diensten sectie */
.services-categories {
    padding-top: 60px;
    position: relative;
    z-index: 10;
}

.services-categories h2 {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.services-categories h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.section-intro {
    margin-bottom: 3rem;
    position: relative;
    z-index: 5;
}

/* Styling voor de diensten CTA knop */
.services-cta {
    text-align: center;
    margin-top: 40px;
}

.services-cta .cta-button {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.services-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 225, 163, 0.3);
}

/* Styling voor de bottom-cta sectie */
.bottom-cta {
    background-color: #f9f9fa;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.bottom-cta::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(42, 225, 163, 0.1), transparent 70%);
    border-radius: 50%;
}

.bottom-cta::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(42, 225, 163, 0.1), transparent 70%);
    border-radius: 50%;
}

.bottom-cta .cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.bottom-cta .cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
    
    .bottom-cta .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .bottom-cta .cta-content p {
        font-size: 1.1rem;
    }
}

/* Styling voor sectie titels met groene streep */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Footer - Mobile responsiveness improvements */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-info .footer-logo {
        margin: 0 auto 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-nav, .footer-services, .footer-contact-info {
        text-align: center;
    }
    
    .footer-nav h4::after, .footer-services h4::after, .footer-contact-info h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .footer-copyright {
        margin-bottom: 0;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

/* Additional improvements for very small screens */
@media (max-width: 480px) {
    .main-footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-info .footer-logo {
        padding: 1rem;
    }
    
    .footer-info .footer-logo img {
        max-width: 150px;
    }
}

/* Add scroll margin for anchor links to account for fixed header */
#netwerken, #cloud, #workplace, #beveiliging, #pentest, #cybersecurity {
    scroll-margin-top: 100px; /* Adjust this value based on your header height plus some extra space */
}

/* Stats container for over-ons page */
.stats-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--primary-color);
}

.stats-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        var(--primary-color),
        var(--primary-color) 3px,
        transparent 3px,
        transparent 15px
    );
    opacity: 0.1;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Values container for over-ons page */
.values-container {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--primary-color);
}

.values-title {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.values-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateX(5px);
}

.value-icon {
    background-color: rgba(42, 225, 163, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.value-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.value-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .values-container {
        padding: 1.5rem;
    }
}

/* Quote container for over-ons page */
.quote-container {
    background-color: white;
    border-radius: 10px;
    padding: 3rem 2rem 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--primary-color);
}

.quote-mark {
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 5rem;
    line-height: 1;
    color: var(--primary-color);
    opacity: 0.2;
}

.quote-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    position: relative;
    font-style: italic;
}

.quote-author {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.author-name {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1rem;
}

.author-title {
    color: #777;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .quote-container {
        padding: 2.5rem 1.5rem 1.5rem;
    }
    
    .quote-text {
        font-size: 1rem;
    }
}

/* Improved styling for the company overview stats */
.company-overview .stats-container {
    margin-top: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--primary-color);
}

@media (max-width: 992px) {
    .company-overview .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .company-overview .stats-container {
        grid-template-columns: 1fr;
    }
}

/* Mission statement styling - reduced whitespace */
.mission-statement {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-left: 4px solid var(--primary-color);
}

.mission-icon {
    background-color: rgba(42, 225, 163, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.mission-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary-color);
}

.mission-statement h3 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    color: var(--text-color);
}

.mission-statement p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.mission-divider {
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    margin: 1.25rem 0;
    width: 100%;
}

/* YouForm iframe styling */
.contact-form iframe {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background-color: white;
}

/* Horizontale service kaarten styling */
.services-slider {
    position: relative;
    margin: 3rem 0;
    overflow: hidden;
}

.service-cards-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0.5rem;
    scroll-behavior: smooth;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    cursor: grab;
    user-select: none; /* Voorkomt tekstselectie tijdens slepen */
}

.service-cards-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.service-cards-container:active {
    cursor: grabbing;
}

.service-card-horizontal {
    flex: 0 0 auto;
    width: calc(100% - 2rem);
    max-width: 500px;
    display: flex;
    background: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(42, 225, 163, 0.15);
}

.service-card-horizontal .service-icon {
    flex: 0 0 40px;
    margin-right: 1rem;
}

.service-card-horizontal .service-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
}

.service-card-horizontal .service-content {
    flex: 1;
}

.service-card-horizontal h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.service-card-horizontal p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #666;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-tags span {
    background-color: rgba(42, 225, 163, 0.1);
    color: var(--text-color);
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
}

.slider-prev, .slider-next {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.slider-prev:hover, .slider-next:hover {
    background-color: rgba(42, 225, 163, 0.1);
}

.slider-prev svg, .slider-next svg {
    width: 20px;
    height: 20px;
    color: var(--text-color);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
    margin: 0 1rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ddd;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
}

/* Responsive aanpassingen */
@media (min-width: 768px) {
    .service-card-horizontal {
        width: calc(50% - 1.5rem);
    }
}

@media (min-width: 1024px) {
    .service-card-horizontal {
        width: calc(33.333% - 1rem);
    }
}

/* Modern Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card-modern {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(42, 225, 163, 0.15);
    border-top: 4px solid var(--primary-color);
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right, rgba(42, 225, 163, 0.1), transparent 70%);
    border-radius: 0 0 0 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-modern:hover::before {
    opacity: 1;
}

.service-card-modern .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(42, 225, 163, 0.1);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon {
    background-color: var(--primary-color);
}

.service-card-modern .service-icon svg {
    width: 100%;
    height: 100%;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.service-card-modern:hover .service-icon svg {
    color: var(--white);
}

.service-card-modern h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.service-card-modern h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.service-card-modern:hover h3::after {
    width: 80px;
}

.service-card-modern p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.service-card-modern .service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
}

.service-card-modern .service-features span {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    color: #555;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.service-card-modern .service-features span::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.service-card-modern:hover .service-features span {
    background-color: rgba(42, 225, 163, 0.1);
    color: var(--text-color);
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Services Accordion Styling */
.services-accordion {
    margin: 3rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .services-accordion {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        align-items: start;
    }
}

.accordion-item {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.accordion-item:hover {
    box-shadow: 0 8px 25px rgba(42, 225, 163, 0.15);
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
}

.accordion-header .service-icon {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(42, 225, 163, 0.1);
    border-radius: 8px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.accordion-header .service-icon svg {
    width: 100%;
    height: 100%;
    color: var(--primary-color);
}

.accordion-item.active .accordion-header .service-icon {
    background-color: var(--primary-color);
}

.accordion-item.active .accordion-header .service-icon svg {
    color: var(--white);
}

.accordion-header h3 {
    font-size: 1.2rem;
    margin: 0;
    flex: 1;
    transition: color 0.3s ease;
}

.accordion-item.active .accordion-header h3 {
    color: var(--primary-color);
}

.accordion-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.accordion-toggle svg {
    width: 16px;
    height: 16px;
    color: #666;
}

.accordion-item.active .accordion-toggle {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-toggle svg {
    color: var(--primary-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.accordion-content p {
    color: #666;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.accordion-content .service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.accordion-content .service-features span {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    background-color: #f8f9fa;
    border-radius: 20px;
    color: #555;
    display: inline-flex;
    align-items: center;
}

.accordion-content .service-features span::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 0.3rem;
}

/* Desktop styling - grid layout voor grotere schermen */
@media (min-width: 768px) {
    .services-accordion {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        align-items: start;
    }
    
    .accordion-item {
        margin-bottom: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    /* Verberg de toggle pijl op desktop */
    .accordion-toggle {
        display: none;
    }
    
    /* Verbeterde header styling op desktop */
    .accordion-header {
        padding: 1.5rem 1.5rem 0.5rem;
        cursor: default;
        border-bottom: 1px solid rgba(42, 225, 163, 0.2);
        margin-bottom: 1rem;
    }
    
    .accordion-header .service-icon {
        width: 50px;
        height: 50px;
        background-color: var(--primary-color);
        padding: 0.8rem;
    }
    
    .accordion-header .service-icon svg {
        color: var(--white);
    }
    
    .accordion-header h3 {
        font-size: 1.3rem;
        color: var(--text-color);
        font-weight: 600;
    }
    
    /* Zorg ervoor dat de content altijd zichtbaar is op desktop */
    .accordion-content {
        max-height: none !important;
        padding: 0 1.5rem 1.5rem !important;
        overflow: visible;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .accordion-content p {
        margin-bottom: 1.5rem;
        line-height: 1.6;
        flex: 1;
    }
    
    /* Verbeterde features styling */
    .accordion-content .service-features {
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
        margin-top: auto;
    }
    
    .accordion-content .service-features span {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        background-color: #f8f9fa;
        border-radius: 6px;
        color: #555;
        display: inline-flex;
        align-items: center;
        transition: all 0.3s ease;
    }
    
    .accordion-content .service-features span:hover {
        background-color: rgba(42, 225, 163, 0.1);
        color: var(--text-color);
    }
}

/* Mobiele styling - één kolom */
@media (max-width: 767px) {
    .services-accordion {
        display: block;
    }
    
    .accordion-item {
        margin-bottom: 1rem;
    }
    
    /* Toon de toggle pijl op mobiel */
    .accordion-toggle {
        display: flex;
    }
}

/* Aanpassing van de header tekst kleur op desktop */
@media (min-width: 768px) {
    /* Bestaande CSS behouden */
    
    /* Zorg ervoor dat de header tekst zwart is op desktop */
    .accordion-item.active .accordion-header h3 {
        color: var(--text-color); /* Overschrijf de groene kleur met de standaard tekstkleur */
    }
}

/* Verbeterde styling voor continenten op mobiel */
@media (max-width: 768px) {
    .continent-icons {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        justify-content: center;
    }
    
    .continent {
        width: 100%;
    }
    
    .continent svg {
        width: 36px;
        height: 36px;
    }
}

/* Extra kleine schermen */
@media (max-width: 480px) {
    .continent-icons {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .continent span {
        font-size: 0.75rem;
    }
} 