        .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: 18px;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .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;
            font-family: 'Consolas', monospace;
        }

        .content-section p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .cookie-category {
            background: var(--code-bg);
            border: 2px solid var(--border-color);
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 20px;
        }

        .cookie-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .cookie-title {
            color: var(--primary-color);
            font-size: 20px;
            font-weight: 600;
            font-family: 'Consolas', monospace;
        }

        .cookie-description {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .cookie-toggle {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 30px;
        }

        .cookie-toggle input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: var(--border-color);
            transition: 0.3s;
            border-radius: 30px;
        }

        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 22px;
            width: 22px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: 0.3s;
            border-radius: 50%;
        }

        input:checked + .toggle-slider {
            background-color: var(--primary-color);
        }

        input:checked + .toggle-slider:before {
            transform: translateX(30px);
        }

        input:disabled + .toggle-slider {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .required-badge {
            display: inline-block;
            background: var(--border-color);
            color: var(--text-secondary);
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-left: 10px;
        }

        .save-button {
            background: var(--primary-color);
            color: var(--background-dark);
            border: none;
            padding: 15px 40px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Consolas', monospace;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .save-button:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
        }

        .button-container {
            text-align: center;
            margin-top: 30px;
        }

        .success-message {
            display: none;
            background: var(--code-bg);
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            padding: 15px;
            border-radius: 4px;
            text-align: center;
            margin-top: 20px;
            font-family: 'Consolas', monospace;
        }

        .success-message.show {
            display: block;
        }

        /* 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;
        }
