        /* Breadcrumb Section */
        .page-breadcrumb {
            position: relative;
            width: 100%;
            height: 400px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .page-breadcrumb::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
            z-index: 1;
        }

        .breadcrumb-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #ffffff;
        }

        .breadcrumb-content h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }

        .breadcrumb-nav {
            font-size: 1rem;
            font-weight: 500;
        }

        .breadcrumb-nav a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
            opacity: 0.9;
        }

        .breadcrumb-nav a:hover {
            color: #007bff;
            opacity: 1;
        }

        .breadcrumb-nav .separator {
            opacity: 0.7;
        }

        .breadcrumb-nav .current {
            opacity: 0.8;
            font-weight: 400;
        }

        /* Content Section */
        .page-content-section {
            padding: 60px 0;
        }

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

        .content-wrapper {
            background: #ffffff;
            border-radius: 10px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
            padding: 40px;
        }

        /* Reporter Register Button */
        .reporter-register-wrapper {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-register-reporter {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #ffffff;
            padding: 14px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
            border: none;
            cursor: pointer;
        }

        .btn-register-reporter i {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .btn-register-reporter:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
            background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
            color: #ffffff;
        }

        .btn-register-reporter:active {
            transform: translateY(0);
        }

        /* Responsive button styles */
        @media (max-width: 768px) {
            .btn-register-reporter {
                padding: 12px 25px;
                font-size: 1rem;
                gap: 10px;
            }

            .btn-register-reporter i {
                font-size: 1rem;
            }

            .reporter-register-wrapper {
                margin-bottom: 30px;
                padding: 15px;
            }
        }

        @media (max-width: 480px) {
            .btn-register-reporter {
                padding: 10px 20px;
                font-size: 0.9rem;
                width: 100%;
                justify-content: center;
            }

            .reporter-register-wrapper {
                margin-bottom: 25px;
                padding: 12px;
            }
        }

        /* CKEditor Content Styling */
        .ckeditor-content {
            color: #333;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .ckeditor-content h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #222;
            margin-bottom: 25px;
            line-height: 1.3;
            border-bottom: 3px solid #007bff;
            padding-bottom: 15px;
        }

        .ckeditor-content h2 {
            font-size: 2rem;
            font-weight: 600;
            color: #333;
            margin: 30px 0 20px;
            line-height: 1.3;
        }

        .ckeditor-content h3 {
            font-size: 1.75rem;
            font-weight: 600;
            color: #444;
            margin: 25px 0 15px;
        }

        .ckeditor-content h4 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #555;
            margin: 20px 0 15px;
        }

        .ckeditor-content p {
            margin-bottom: 20px;
            color: #555;
        }

        .ckeditor-content strong {
            font-weight: 700;
            color: #333;
        }

        .ckeditor-content em {
            font-style: italic;
            color: #666;
        }

        .ckeditor-content ul,
        .ckeditor-content ol {
            margin: 20px 0;
            padding-left: 30px;
        }

        .ckeditor-content ul {
            list-style: disc;
        }

        .ckeditor-content ol {
            list-style: decimal;
        }

        .ckeditor-content li {
            margin-bottom: 10px;
            color: #555;
            line-height: 1.6;
        }

        .ckeditor-content a {
            color: #007bff;
            text-decoration: none;
            transition: color 0.3s ease;
            border-bottom: 1px solid transparent;
        }

        .ckeditor-content a:hover {
            color: #0056b3;
            border-bottom-color: #0056b3;
        }

        .ckeditor-content blockquote {
            background: #f8f9fa;
            border-left: 5px solid #007bff;
            margin: 25px 0;
            padding: 20px 25px;
            font-style: italic;
            color: #666;
            border-radius: 5px;
        }

        .ckeditor-content img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .ckeditor-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            overflow-x: auto;
        }

        .ckeditor-content table th,
        .ckeditor-content table td {
            border: 1px solid #dee2e6;
            padding: 12px;
            text-align: left;
        }

        .ckeditor-content table th {
            background: #f8f9fa;
            font-weight: 600;
            color: #333;
        }

        .ckeditor-content table tr:nth-child(even) {
            background: #f8f9fa;
        }

        .ckeditor-content hr {
            border: none;
            border-top: 2px solid #e9ecef;
            margin: 30px 0;
        }

        .ckeditor-content code {
            background: #f4f4f4;
            padding: 2px 8px;
            border-radius: 4px;
            font-family: 'Courier New', monospace;
            color: #e83e8c;
            font-size: 0.95rem;
        }

        .ckeditor-content pre {
            background: #f4f4f4;
            padding: 20px;
            border-radius: 8px;
            overflow-x: auto;
            margin: 20px 0;
            border: 1px solid #e0e0e0;
        }

        .ckeditor-content pre code {
            background: none;
            padding: 0;
            color: #333;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .page-breadcrumb {
                height: 300px;
            }

            .breadcrumb-content h1 {
                font-size: 2rem;
            }

            .breadcrumb-nav {
                font-size: 0.9rem;
                flex-wrap: wrap;
            }

            .page-content-section {
                padding: 40px 0;
            }

            .content-wrapper {
                padding: 25px 20px;
            }

            .ckeditor-content h1 {
                font-size: 2rem;
            }

            .ckeditor-content h2 {
                font-size: 1.75rem;
            }

            .ckeditor-content h3 {
                font-size: 1.5rem;
            }

            .ckeditor-content {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .page-breadcrumb {
                height: 250px;
            }

            .breadcrumb-content h1 {
                font-size: 1.5rem;
            }

            .breadcrumb-nav {
                font-size: 0.85rem;
            }

            .content-wrapper {
                padding: 20px 15px;
                box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            }

            .ckeditor-content h1 {
                font-size: 1.75rem;
            }

            .ckeditor-content h2 {
                font-size: 1.5rem;
            }

            .ckeditor-content h3 {
                font-size: 1.25rem;
            }

            .ckeditor-content blockquote {
                padding: 15px;
                margin: 20px 0;
            }
        }
