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

:root {
            --primary: #d2691e;
            --secondary: #173752;
            --light: #f8f9fa;
            --grey: #667788;
            --light-grey: #e9ecef;
            --border: #dee2e6;
        }

        * { 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;
        }

        .page-content {
            background-color: #f8f9fa;
            padding: 40px 0 0;
        }

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

        .content-section {
            background: white;
            border-radius: 15px;
            padding: 50px;
            margin-bottom: 35px;
            border: 1px solid var(--border);
            box-shadow: 0 4px 18px rgba(0,0,0,0.04);
        }

        .content-section h2 {
            font-size: 1.75rem;
            color: var(--secondary);
            margin-bottom: 22px;
            padding-bottom: 16px;
            border-bottom: 2px solid var(--light-grey);
            display: flex;
            align-items: center;
            gap: 14px;
            line-height: 1.3;
        }

        .section-icon {
            width: 44px;
            height: 44px;
            flex-shrink: 0;
            background-color: rgba(210,105,30,0.1);
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }

        .content-section p {
            color: var(--grey);
            font-size: 1rem;
            line-height: 1.75;
            margin-bottom: 16px;
        }

        .content-section p:last-child { margin-bottom: 0; }

        .lead {
            font-size: 1.1rem !important;
            color: #444 !important;
            line-height: 1.8 !important;
        }

        .highlight-box {
            background: linear-gradient(135deg, #fdf3ec 0%, #fef8f4 100%);
            border-left: 5px solid var(--primary);
            border-radius: 0 12px 12px 0;
            padding: 24px 30px;
            margin: 28px 0;
        }

        .highlight-box p {
            color: #444 !important;
            font-size: 1.05rem !important;
            margin: 0 !important;
        }

        .info-box {
            background: var(--light);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 24px 28px;
            margin: 24px 0;
        }

        .info-box h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 10px;
        }

        .info-box p { margin: 0 !important; }

        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 28px;
        }

        .two-col-item {
            background: var(--light);
            border-left: 4px solid var(--primary);
            border-radius: 0 10px 10px 0;
            padding: 22px 24px;
        }

        .two-col-item h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 10px;
        }

        .two-col-item p {
            font-size: 0.95rem !important;
            margin: 0 !important;
        }

        .founders-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 35px;
            margin-top: 32px;
        }

        .founder-card {
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border);
            background: white;
            transition: box-shadow 0.2s ease;
        }

        .founder-card:hover {
            box-shadow: 0 10px 28px rgba(23,55,82,0.1);
        }

        .founder-photo-wrap {
            width: 100%;
            height: 300px;
            overflow: hidden;
            background: var(--light-grey);
        }

        .founder-photo-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        .founder-body {
            padding: 28px;
        }

        .founder-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 4px;
        }

        .founder-role {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .founder-body p {
            font-size: 0.96rem !important;
            line-height: 1.65 !important;
            color: var(--grey);
            margin-bottom: 14px;
        }

        .founder-quote {
            padding: 14px 18px;
            background: var(--light);
            border-radius: 8px;
            border-left: 3px solid var(--primary);
            font-style: italic;
            color: #555;
            font-size: 0.95rem;
            margin-top: 4px;
        }

        .when-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 28px;
        }

        .when-item {
            border-radius: 10px;
            padding: 24px;
        }

        .when-item.yes {
            background: #f0faf4;
            border: 1px solid #b8dfc9;
        }

        .when-item.no {
            background: #fdf3ec;
            border: 1px solid #e8c9aa;
        }

        .when-item h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 14px;
        }

        .when-item.yes h4 { color: #2d7a50; }
        .when-item.no h4 { color: #a0551a; }

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

        .when-item ul li {
            font-size: 0.94rem;
            color: var(--grey);
            padding: 5px 0 5px 22px;
            position: relative;
            line-height: 1.5;
        }

        .when-item.yes ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #2d7a50;
            font-weight: 700;
        }

        .when-item.no ul li::before {
            content: '✗';
            position: absolute;
            left: 0;
            color: #a0551a;
            font-weight: 700;
        }

        .faq-section {
            background: white;
            border-radius: 15px;
            padding: 50px;
            margin-bottom: 35px;
            border: 1px solid var(--border);
            box-shadow: 0 4px 18px rgba(0,0,0,0.04);
        }

        .faq-section > h2 {
            font-size: 1.75rem;
            color: var(--secondary);
            font-weight: 700;
            text-align: center;
            margin-bottom: 8px;
        }

        .faq-intro {
            text-align: center;
            color: var(--grey);
            margin-bottom: 38px;
            font-size: 1rem;
        }

        .faq-category {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--primary);
            margin: 32px 0 12px;
            padding-bottom: 8px;
            border-bottom: 1px solid var(--light-grey);
        }

        .faq-category:first-of-type { margin-top: 0; }

        .faq-item { border-bottom: 1px solid var(--light-grey); cursor: pointer; }
        .faq-item:last-child { border-bottom: none; }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
            gap: 20px;
            font-weight: 600;
            color: var(--secondary);
            font-size: 1rem;
            line-height: 1.4;
            transition: color 0.2s ease;
        }

        .faq-item:hover .faq-question { color: var(--primary); }

        .faq-toggle {
            flex-shrink: 0;
            font-size: 1.5rem;
            color: var(--primary);
            font-weight: 300;
            transition: transform 0.3s ease;
            min-width: 30px;
            text-align: center;
            line-height: 1;
        }

        .faq-toggle.active { transform: rotate(45deg); }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
        }

        .faq-answer.active { max-height: 2000px; padding-bottom: 22px; }

        .faq-answer p {
            color: var(--grey);
            font-size: 0.97rem;
            line-height: 1.7;
            margin-bottom: 10px;
        }

        .faq-answer p:last-child { margin-bottom: 0; }
        .faq-answer a { color: var(--primary); }

        .location-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 30px;
        }

        .location-card {
            background: var(--light);
            border-radius: 12px;
            padding: 28px;
            border: 1px solid var(--border);
        }

        .location-card h3 {
            color: var(--secondary);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 14px;
        }

        .location-photo {
            width: 100%;
            height: 200px;
            border-radius: 8px;
            border: 1px solid var(--border);
            background-size: cover;
            background-position: center;
            margin-bottom: 20px;
        }

        .address-block {
            color: var(--grey);
            font-size: 0.97rem;
            line-height: 1.75;
        }

        .address-block strong { color: var(--secondary); }
        .address-block a { color: var(--primary); }

        .map-frame {
            width: 100%;
            height: 220px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border);
            margin-bottom: 20px;
        }

        .map-frame iframe { width: 100%; height: 100%; border: 0; }

        .travel-block h4 {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--secondary);
            margin: 14px 0 6px;
        }

        .travel-block h4:first-child { margin-top: 0; }

        .travel-block ul { list-style: none; padding: 0; }

        .travel-block ul li {
            color: var(--grey);
            font-size: 0.88rem;
            padding: 3px 0 3px 16px;
            position: relative;
        }

        .travel-block ul li::before {
            content: '›';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: 700;
        }

        @media (max-width: 800px) {
            .content-section, .faq-section { padding: 30px 22px; }
            .content-section h2 { font-size: 1.4rem; flex-direction: column; gap: 10px; text-align: center; }
            .section-icon { margin: 0 auto; }
            .founders-grid, .location-grid, .two-col, .when-grid { grid-template-columns: 1fr; }
        }
