/* BASE STYLES - Algemene stijlen en reset */

/* VOLLEDIGE CSS ISOLATIE - GEEN EXTERNE INTERFERENTIE */
.peppol-homepage-isolated {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif !important;
    background-color: #f8f9fa !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100vh !important;
    line-height: 1.6 !important;
    color: #333 !important;
    box-sizing: border-box !important;
}

/* Buitenste container voor de volledige pagina */
.peppol-homepage-outer-frame {
    background-color: #f5f7fa;
    padding: 40px 20px;
    border-radius: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Binnenste container met correcte breedte */
.peppol-homepage-isolated .main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* CSS Reset binnen component */
.peppol-homepage-isolated h1,
.peppol-homepage-isolated h2,
.peppol-homepage-isolated h3,
.peppol-homepage-isolated h4,
.peppol-homepage-isolated h5,
.peppol-homepage-isolated h6,
.peppol-homepage-isolated p,
.peppol-homepage-isolated span,
.peppol-homepage-isolated a,
.peppol-homepage-isolated ul,
.peppol-homepage-isolated li,
.peppol-homepage-isolated button,
.peppol-homepage-isolated input,
.peppol-homepage-isolated form {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    color: inherit !important;
    text-decoration: none !important;
    list-style: none !important;
}

/* Alle items in containers */
.peppol-homepage-isolated *,
.peppol-homepage-isolated *::before,
.peppol-homepage-isolated *::after {
    box-sizing: border-box !important;
}

/* Gemeenschappelijke sectie stijlen */
.peppol-homepage-isolated .countdown-banner,
.peppol-homepage-isolated .hero-section,
.peppol-homepage-isolated .partners-slot,
.peppol-homepage-isolated .social-proof-section,
.peppol-homepage-isolated .path-chooser-section,
.peppol-homepage-isolated .testimonials-section,
.peppol-homepage-isolated .faq-section,
.peppol-homepage-isolated .blog-section,
.peppol-homepage-isolated .value-props-section,
.peppol-homepage-isolated .final-cta-section {
    margin-bottom: 40px;
}

/* Hero Search Overlay */
.peppol-homepage-isolated .hero-search-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(4px) !important;
    z-index: 999 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
}

.peppol-homepage-isolated .hero-search-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Algemene animaties */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}