        .main-content {
            flex: 1;
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .page-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .page-header h1 {
            color: var(--primary-color);
            font-size: 48px;
            margin-bottom: 20px;
            font-family: 'Consolas', monospace;
            letter-spacing: 2px;
        }

        .page-header p {
            color: var(--text-secondary);
            font-size: 14px;
        }

        .content-section {
            background: var(--background-light);
            border: 2px solid var(--border-color);
            border-radius: 8px;
            padding: 40px;
            margin-bottom: 30px;
        }

        .content-section h2 {
            color: var(--primary-color);
            font-size: 28px;
            margin-bottom: 20px;
            margin-top: 30px;
            font-family: 'Consolas', monospace;
        }

        .content-section h2:first-child {
            margin-top: 0;
        }

        .content-section p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .content-section ul {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-left: 30px;
            margin-bottom: 15px;
        }

        .content-section li {
            margin-bottom: 10px;
        }

        /* Links styling */
        .content-section a {
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.3s;
            border-bottom: 1px solid transparent;
        }

        .content-section a:hover {
            border-bottom-color: var(--primary-color);
            opacity: 0.8;
        }

        /* Info boxes */
        .info-box {
            margin-top: 1.5rem;
            padding: 1rem;
            border-radius: 6px;
            border-left: 4px solid;
        }

        .info-box-additional {
            background: var(--background-light);
            border-left-color: var(--primary-color);
        }

        .info-box-gdpr {
            background: rgba(76, 175, 80, 0.1);
            border-left-color: #4caf50;
        }

        [data-theme="light"] .info-box-gdpr {
            background: #e8f5e9;
        }

        .info-box-important {
            background: rgba(255, 193, 7, 0.1);
            border-left-color: #ffc107;
        }

        [data-theme="light"] .info-box-important {
            background: #fff3cd;
        }

        .info-box p {
            margin: 0 0 0.5rem 0;
        }

        .info-box p:last-child {
            margin-bottom: 0;
        }

        .info-box ul {
            margin: 0.5rem 0 0 0;
            padding-left: 1.5rem;
        }

        .info-box ul li {
            margin-bottom: 0.5rem;
        }

        .info-box ul li:last-child {
            margin-bottom: 0;
        }

        /* Email links with icons */
        .content-section p a[href^="mailto:"] {
            font-weight: 600;
        }

        /* H3 headings */
        .content-section h3 {
            color: var(--primary-color);
            font-size: 20px;
            margin-top: 20px;
            margin-bottom: 15px;
            font-family: 'Consolas', monospace;
        }

        /* Ordered lists */
        .content-section ol {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-left: 30px;
            margin-bottom: 15px;
        }

        .content-section ol li {
            margin-bottom: 10px;
        }
