/* 
 * Consultancy_Voorwaarden - Complete standalone CSS
 * Alle originele styling (zonder comments)
 */

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .pdf-viewer-section {
            padding: 60px 0;
            background-color: #f8f9fa;
        }

        .toggle-pdf-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            max-width: 400px;
            margin: 0 auto 30px;
            padding: 18px 30px;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            color: #2c4a5f;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .toggle-pdf-button:hover {
            border-color: #d2691e;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .toggle-pdf-button.active {
            background: #2c4a5f;
            color: white;
            border-color: #2c4a5f;
        }

        .toggle-icon {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .toggle-pdf-button.active .toggle-icon {
            transform: rotate(180deg);
        }

        .pdf-viewer-container {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out;
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            position: relative;
        }

        .pdf-viewer-container.active {
            max-height: 1000px;
            transition: max-height 0.5s ease-in;
        }

        .pdf-alt-message {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 15px 20px;
            border-radius: 8px;
            font-size: 0.9rem;
            z-index: 10;
        }

        .pdf-alt-message p {
            margin: 0 0 10px 0;
        }

        .alt-download-btn {
            background: #d2691e;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 5px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .alt-download-btn:hover {
            background: #e67c2e;
        }

        .pdf-toolbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 30px;
            background: #f8f9fa;
            border-bottom: 1px solid #e0e0e0;
            border-radius: 16px 16px 0 0;
        }

        .pdf-info {
            font-weight: 600;
            color: #2c4a5f;
            font-size: 1.1rem;
        }

        .pdf-actions {
            display: flex;
            gap: 10px;
        }

        .pdf-action-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: white;
            color: #2c4a5f;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .pdf-action-btn:hover {
            background: #2c4a5f;
            color: white;
            border-color: #2c4a5f;
        }

        .pdf-embed-wrapper {
            width: 100%;
            min-height: 600px;
            position: relative;
            background: #f5f5f5;
        }

        .pdf-notice {
            text-align: center;
            padding: 40px 20px 20px;
            color: #666;
        }

        .pdf-notice p {
            margin: 10px 0;
            font-size: 1.1rem;
        }

        .pdf-notice p:first-child {
            font-size: 1.2rem;
            color: #d2691e;
            font-weight: 600;
        }

        .pdf-options {
            display: flex;
            justify-content: center;
            gap: 20px;
            padding: 30px 20px;
            flex-wrap: wrap;
        }

        .pdf-option-btn {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 20px 30px;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            min-width: 250px;
            justify-content: center;
        }

        .pdf-option-btn.primary {
            background: linear-gradient(135deg, #d2691e 0%, #e67c2e 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(210, 105, 30, 0.3);
        }

        .pdf-option-btn.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(210, 105, 30, 0.4);
        }

        .pdf-option-btn.secondary {
            background: white;
            color: #2c4a5f;
            border: 2px solid #e0e0e0;
        }

        .pdf-option-btn.secondary:hover {
            background: #f8f9fa;
            border-color: #2c4a5f;
        }

        .pdf-preview {
            text-align: center;
            padding: 20px;
            max-width: 600px;
            margin: 0 auto;
        }

        .pdf-preview h3 {
            color: #2c4a5f;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        embed[type="application/pdf"] {
            width: 100%;
            height: 800px;
            border: none;
        }

        .pdf-embed-wrapper {
            width: 100%;
            height: 800px;
            position: relative;
        }

        #pdf-object {
            width: 100%;
            height: 100%;
            border: none;
        }

        #pdf-viewer {
            width: 100%;
            height: 100%;
            border: none;
        }

        .pdf-fallback {
            padding: 100px 30px;
            text-align: center;
            color: #666;
        }

        .fallback-download {
            display: inline-block;
            margin-top: 20px;
            padding: 14px 30px;
            background: #d2691e;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .fallback-download:hover {
            background: #e67c2e;
        }

        .pdf-viewer-container:fullscreen {
            max-height: 100vh;
            height: 100vh;
            border-radius: 0;
        }

        .pdf-viewer-container:fullscreen #pdf-viewer {
            height: calc(100vh - 70px);
        }

        @media (max-width: 768px) {
            .pdf-toolbar {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            #pdf-viewer {
                height: 600px;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .pdf-viewer-container.active {
            animation: fadeIn 0.5s ease-out;
        }
