        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 100px 20px 40px 20px;
            flex: 1;
        }

        /* Privacy Terminal */
        .privacy-terminal {
            background: rgba(13, 17, 23, 0.8);
            border: 2px solid #30363d;
            border-radius: 12px;
            padding: 40px;
            max-width: 1000px;
            width: 100%;
            margin: 0 auto;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        }

        .terminal-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid #30363d;
        }

        .terminal-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ff4757;
        }

        .terminal-dot:nth-child(2) { background: #ffa502; }
        .terminal-dot:nth-child(3) { background: #00ff88; }

        .privacy-content {
            font-size: 0.95rem;
        }

        .privacy-title {
            font-size: clamp(1.8rem, 5vw, 2.5rem);
            color: #00ff88;
            margin-bottom: 30px;
        }

        .privacy-line {
            margin: 12px 0;
            padding-left: 20px;
        }

        .prompt {
            color: #00ff88;
            margin-right: 10px;
        }

        .command {
            color: #58a6ff;
        }

        .output {
            color: #c9d1d9;
        }

        .output-value {
            color: #ffa502;
            font-weight: 600;
        }

        .cursor {
            display: inline-block;
            width: 10px;
            height: 20px;
            background: #00ff88;
            margin-left: 5px;
            animation: blink-cursor 1s infinite;
        }

        @keyframes blink-cursor {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }


        .privacy-section {
            margin: 30px 0;
            padding: 20px;
            background: rgba(88, 166, 255, 0.05);
            border-left: 3px solid #58a6ff;
            border-radius: 6px;
        }

        .privacy-section h3 {
            color: #58a6ff;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .privacy-section p {
            color: #8b949e;
            margin-bottom: 10px;
            line-height: 1.7;
        }

        .privacy-section ul {
            list-style: none;
            padding: 0;
            margin-top: 10px;
        }

        .privacy-section li {
            padding: 6px 0;
            color: #8b949e;
        }

        .privacy-section li::before {
            content: '▹';
            color: #58a6ff;
            margin-right: 10px;
        }

        .contact-info {
            margin: 30px 0;
            padding: 20px;
            background: rgba(0, 136, 77, 0.05);
            border-left: 3px solid #00ff88;
            border-radius: 6px;
        }

        .contact-info h3 {
            color: #00ff88;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .contact-info p {
            color: #8b949e;
            margin-bottom: 8px;
        }

        .contact-info a {
            color: #ffa502;
            text-decoration: none;
        }

        .contact-info a:hover {
            text-decoration: underline;
        }

        /* Light Theme - Page Specific */
        body.light-theme .privacy-terminal {
            background: rgba(255, 255, 255, 0.9);
            border-color: #d0d7de;
        }

        body.light-theme .terminal-header { border-bottom-color: #d0d7de; }
        body.light-theme .privacy-title { color: #00884d; }
        body.light-theme .prompt { color: #00884d; }
        body.light-theme .command { color: #0969da; }
        body.light-theme .output { color: #24292f; }
        body.light-theme .output-value { color: #dd8800; }
        body.light-theme .cursor { background: #00884d; }
        body.light-theme .privacy-section { background: rgba(9, 105, 218, 0.05); border-left-color: #0969da; }
        body.light-theme .privacy-section h3 { color: #0969da; }
        body.light-theme .privacy-section p { color: #57606a; }
        body.light-theme .privacy-section li { color: #57606a; }
        body.light-theme .privacy-section li::before { color: #0969da; }
        body.light-theme .contact-info { background: rgba(0, 136, 77, 0.05); border-left-color: #00884d; }
        body.light-theme .contact-info h3 { color: #00884d; }
        body.light-theme .contact-info p { color: #57606a; }
        body.light-theme .contact-info a { color: #dd8800; }

        /* Responsive */
        @media (max-width: 768px) {
            .container { padding: 80px 15px 40px 15px; }
            .privacy-terminal { padding: 30px 20px; }
            .privacy-title { font-size: 1.5rem; }
            .privacy-content { font-size: 0.9rem; }
        }