/* Start custom CSS *//* Scoped CSS Wrapper Class */
        .cataract-article-scope {
            font-family: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
            line-height: 1.8;
            color: #2c3e50;
            background: #f8f9fa;
            width: 100%;
            display: block;  /* Ensures it behaves like a block container */
        }
    
        .cataract-article-scope * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        .cataract-article-scope .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .cataract-article-scope header {
            background: linear-gradient(135deg, #ba851d 0%, #ba8b00 100%);
            color: white;
            padding: 60px 20px;
            text-align: center;
            border-radius: 0 0 30px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .cataract-article-scope h1 {
            font-size: 2.5em;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
            font-weight: bold;
        }

        .cataract-article-scope h2 {
            color: #000000;
            font-size: 2em;
            margin: 40px 0 20px 0;
            padding-bottom: 10px;
            border-bottom: 3px solid #9c8700;
            font-weight: bold;
        }

        .cataract-article-scope h3 {
            color: #b89300;
            font-size: 1.5em;
            margin: 30px 0 15px 0;
            font-weight: bold;
        }

        .cataract-article-scope .content-section {
            background: white;
            padding: 40px;
            margin: 30px 0;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        /* جداول المقارنة */
        .cataract-article-scope .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .cataract-article-scope .comparison-table thead {
            background: linear-gradient(135deg, #212222 0%, #b18a25 100%);
            color: white;
        }

        .cataract-article-scope .comparison-table th {
            padding: 20px;
            text-align: right;
            font-weight: bold;
            font-size: 1.1em;
        }

        .cataract-article-scope .comparison-table td {
            padding: 18px;
            text-align: right;
            border-bottom: 1px solid #e9ecef;
        }

        .cataract-article-scope .comparison-table tbody tr:hover {
            background: #f8f9ff;
            transition: background 0.3s ease;
        }

        .cataract-article-scope .comparison-table .highlight {
            background: #e8f5e9;
            font-weight: bold;
        }

        .cataract-article-scope .star {
            color: #ffd700;
            font-size: 1.2em;
        }

        .cataract-article-scope .intro-text {
            font-size: 1.2em;
            line-height: 2;
            color: #34495e;
            margin: 20px 0;
        }

        /* Medical Red Flags */
        .cataract-article-scope .alert-danger {
            background: #fee;
            border-right: 6px solid #dc3545;
            padding: 25px;
            margin: 30px 0;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(220, 53, 69, 0.15);
        }

        .cataract-article-scope .alert-danger h3 {
            color: #dc3545;
            margin-top: 0;
            font-size: 1.6em;
        }

        .cataract-article-scope .alert-danger ul {
            margin: 15px 0;
            padding-right: 25px;
        }

        .cataract-article-scope .alert-danger li {
            margin: 12px 0;
            font-size: 1.1em;
            line-height: 1.8;
        }

        .cataract-article-scope .alert-danger li::marker {
            color: #dc3545;
            font-size: 1.3em;
        }

        /* Quiz Section */
        .cataract-article-scope .quiz-box {
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
            padding: 30px;
            border-radius: 15px;
            border: 2px solid #4caf50;
            margin: 30px 0;
        }

        .cataract-article-scope .quiz-question {
            background: white;
            padding: 20px;
            margin: 15px 0;
            border-radius: 10px;
            border-right: 4px solid #4caf50;
        }

        .cataract-article-scope .quiz-question h4 {
            color: #2e7d32;
            margin-bottom: 10px;
        }

        .cataract-article-scope .quiz-options label {
            display: block;
            padding: 10px;
            margin: 8px 0;
            background: #f5f5f5;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cataract-article-scope .quiz-options label:hover {
            background: #e8f5e9;
            transform: translateX(-5px);
        }

        .cataract-article-scope .quiz-result {
            background: white;
            padding: 25px;
            border-radius: 10px;
            margin-top: 20px;
            border-right: 5px solid #2196f3;
            display: none;
        }

        /* FAQ Section */
        .cataract-article-scope .faq-section {
            margin: 40px 0;
        }

        .cataract-article-scope .faq-category {
            margin: 30px 0;
        }

        .cataract-article-scope .faq-category-title {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 15px;
            font-size: 1.3em;
        }

        .cataract-article-scope .faq-item {
            background: #f8f9ff;
            margin: 12px 0;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #e9ecef;
        }

        .cataract-article-scope .faq-question {
            background: white;
            padding: 18px 20px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1em;
            color: #2c3e50;
            transition: background 0.3s ease;
            border-right: 4px solid #667eea;
        }

        .cataract-article-scope .faq-question:hover {
            background: #f8f9ff;
        }

        .cataract-article-scope .faq-answer {
            padding: 20px;
            line-height: 1.9;
            color: #34495e;
            background: #f8f9ff;
        }

        /* Timeline */
        .cataract-article-scope .timeline {
            position: relative;
            padding: 20px 0;
        }

        .cataract-article-scope .timeline-item {
            background: #f8f9ff;
            padding: 25px;
            margin: 20px 0;
            border-radius: 12px;
            border-right: 5px solid #667eea;
            transition: all 0.3s ease;
        }

        .cataract-article-scope .timeline-item:hover {
            transform: translateX(-5px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
        }

        .cataract-article-scope .timeline-item h3 {
            margin-top: 0;
            color: #667eea;
            font-size: 1.4em;
        }

        .cataract-article-scope .timeline-item ul {
            margin: 15px 0;
            padding-right: 25px;
        }

        .cataract-article-scope .timeline-item li {
            margin: 10px 0;
            line-height: 1.8;
        }

        .cataract-article-scope .timeline-icon {
            font-size: 1.5em;
            margin-left: 10px;
        }

        @media (max-width: 768px) {
            .cataract-article-scope h1 {
                font-size: 1.8em;
            }

            .cataract-article-scope .comparison-table {
                font-size: 0.9em;
            }

            .cataract-article-scope .comparison-table th,
            .cataract-article-scope .comparison-table td {
                padding: 12px 8px;
            }

            .cataract-article-scope .content-section {
                padding: 20px;
            }

            .cataract-article-scope .timeline-item {
                padding: 15px;
            }

            .cataract-article-scope .alert-danger {
                padding: 15px;
            }
        }/* End custom CSS */