/* 
 * Privacyverklaring - 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: 20px 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 0px; 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; }
    .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); }
    .pdf-viewer-container.active { max-height: 1000px; transition: max-height 0.5s ease-in; }
    .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); }
    .pdf-option-btn.secondary { background: white; color: #2c4a5f; border: 2px solid #e0e0e0; }
    .pdf-option-btn.secondary:hover { background: #f8f9fa; border-color: #2c4a5f; }
    embed[type="application/pdf"] { width: 100%; height: 800px; border: none; }

    .faq-section { padding: 20px 0; background-color: #f8f9fa; }
    .faq-header { text-align: center; margin-bottom: 50px; }
    .faq-header h2 { font-size: 2.2rem; color: #173752; font-weight: 600; margin-bottom: 15px; }
    .faq-header p { font-size: 1.05rem; color: #667788; max-width: 700px; margin: 0 auto; }
    .faq-container { max-width: 800px; margin: 0 auto; background: white; border-radius: 15px; padding: 20px 40px; box-shadow: 0 5px 20px rgba(0,0,0,0.03); border: 1px solid #dee2e6; }
    .faq-item { border-bottom: 1px solid #e9ecef; cursor: pointer; }
    .faq-item:last-child { border-bottom: none; }
    .faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: 1.05rem; font-weight: 500; color: #173752; transition: all 0.3s ease; gap: 20px; }
    .faq-item:hover .faq-question { color: #d2691e; }
    .faq-toggle { font-size: 1.5rem; font-weight: 300; color: #d2691e; transition: transform 0.3s ease; min-width: 30px; text-align: center; flex-shrink: 0; }
    .faq-toggle.active { transform: rotate(45deg); }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
    .faq-answer.active { max-height: 1000px; padding-bottom: 20px; }
    .faq-answer p { color: #667788; line-height: 1.7; margin-bottom: 10px; }
    .faq-answer p:last-child { margin-bottom: 0; }
    .faq-answer a { color: #d2691e; text-decoration: none; }
    .faq-answer a:hover { text-decoration: underline; }
    .faq-answer strong { color: #173752; }

    @media (max-width: 768px) {
        .pdf-toolbar { flex-direction: column; gap: 15px; text-align: center; }
        .faq-header h2 { font-size: 1.8rem; }
        .faq-container { padding: 15px 20px; }
        .faq-question { font-size: 1rem; padding: 16px 0; }
    }
