/* Start custom CSS for html, class: .elementor-element-4a468bb */.elementor-369 .elementor-element.elementor-element-4a468bb {
    overflow-x: hidden !important;
}

.elementor-369 .elementor-element.elementor-element-4a468bb * {
    max-width: 100% !important;
}
/* ===== Force article title to stay white ===== */
.article-title,
.elementor-widget-heading .elementor-heading-title,
h1.article-title {
  color: white !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
}/* End custom CSS */
/* Start custom CSS */:root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --primary-light: #3b82f6;
            --secondary: #10b981;
            --accent: #8b5cf6;
            --warning: #f59e0b;
            --danger: #ef4444;
            --success: #22c55e;
            --dark: #1e293b;
            --gray-900: #0f172a;
            --gray-800: #1e293b;
            --gray-700: #334155;
            --gray-600: #475569;
            --gray-500: #64748b;
            --gray-400: #94a3b8;
            --gray-300: #cbd5e1;
            --gray-200: #e2e8f0;
            --gray-100: #f1f5f9;
            --gray-50: #f8fafc;
            --white: #ffffff;
            --gradient-primary: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
            --gradient-secondary: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --radius-sm: 8px;
            --radius: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Cairo', sans-serif;
            background: var(--gray-50);
            color: var(--gray-800);
            line-height: 1.8;
            font-size: 18px;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .breadcrumbs {
            background: var(--white);
            padding: 15px 0;
            border-bottom: 1px solid var(--gray-200);
        }

        .breadcrumbs nav {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            flex-wrap: wrap;
        }

        .breadcrumbs a {
            color: var(--primary);
            text-decoration: none;
        }

        .breadcrumbs a:hover {
            text-decoration: underline;
        }

        .breadcrumbs span {
            color: var(--gray-500);
        }

        .breadcrumbs .separator {
            color: var(--gray-400);
        }

        .article-header {
            background: var(--gradient-primary);
            padding: 60px 0;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .article-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .article-header .container {
            position: relative;
            z-index: 1;
        }

        .article-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .article-title {
            font-size: 2.5rem;
            font-weight: 900;
            line-height: 1.3;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 15px;
            opacity: 0.95;
        }

        .article-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .answer-first {
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
            border: 2px solid var(--secondary);
            border-radius: var(--radius-lg);
            padding: 30px;
            margin: -30px 20px 40px;
            position: relative;
            z-index: 10;
            box-shadow: var(--shadow-lg);
        }

        .answer-first-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--secondary);
            color: white;
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .answer-first h2 {
            font-size: 1.3rem;
            color: var(--gray-900);
            margin-bottom: 12px;
            font-weight: 800;
        }

        .answer-first p {
            font-size: 1.1rem;
            color: var(--gray-700);
            line-height: 1.9;
            margin: 0;
        }

        .answer-first strong {
            color: var(--primary-dark);
        }

        .ortho-article {
            background: var(--white);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-md);
            padding: 50px;
            margin-bottom: 40px;
        }

        .ortho-article h2 {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--gray-900);
            margin: 50px 0 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid var(--primary);
            position: relative;
        }

        .ortho-article h2:first-of-type {
            margin-top: 0;
        }

        .ortho-article h2::before {
            content: '';
            position: absolute;
            right: 0;
            bottom: -3px;
            width: 60px;
            height: 3px;
            background: var(--accent);
        }

        .ortho-article h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--gray-800);
            margin: 35px 0 18px;
            padding-right: 20px;
            border-right: 4px solid var(--secondary);
        }

        .ortho-article h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--gray-700);
            margin: 25px 0 15px;
        }

        .ortho-article p {
            margin-bottom: 20px;
            color: var(--gray-700);
            text-align: justify;
        }

        .ortho-article strong {
            color: var(--gray-900);
            font-weight: 700;
        }

        .ortho-article ul,
        .ortho-article ol {
            margin: 20px 0;
            padding-right: 25px;
        }

        .ortho-article li {
            margin-bottom: 12px;
            color: var(--gray-700);
        }

        .ortho-article ul li::marker {
            color: var(--primary);
        }

        .table-wrapper {
            overflow-x: auto;
            margin: 30px 0;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .medical-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 16px;
        }

        .medical-table thead {
            background: var(--gradient-primary);
            color: white;
        }

        .medical-table th {
            padding: 18px 15px;
            text-align: right;
            font-weight: 700;
            font-size: 15px;
        }

        .medical-table td {
            padding: 15px;
            border-bottom: 1px solid var(--gray-200);
            vertical-align: top;
        }

        .medical-table tbody tr:hover {
            background: var(--gray-50);
        }

        .medical-table tbody tr:last-child td {
            border-bottom: none;
        }

        .info-box {
            border-radius: var(--radius);
            padding: 25px;
            margin: 30px 0;
            position: relative;
            overflow: hidden;
        }

        .info-box::before {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 5px;
        }

        .info-box-icon {
            font-size: 2rem;
            margin-bottom: 15px;
            display: block;
        }

        .info-box h4 {
            margin: 0 0 10px;
            font-size: 1.1rem;
            font-weight: 700;
        }

        .info-box p {
            margin: 0;
            font-size: 1rem;
        }

        .tip-box {
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
            border: 1px solid #93c5fd;
        }

        .tip-box::before {
            background: var(--primary);
        }

        .tip-box h4 {
            color: var(--primary-dark);
        }

        .warning-box {
            background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
            border: 1px solid #fcd34d;
        }

        .warning-box::before {
            background: var(--warning);
        }

        .warning-box h4 {
            color: #b45309;
        }

        .danger-box {
            background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
            border: 1px solid #fca5a5;
        }

        .danger-box::before {
            background: var(--danger);
        }

        .danger-box h4 {
            color: #b91c1c;
        }

        .success-box {
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
            border: 1px solid #86efac;
        }

        .success-box::before {
            background: var(--success);
        }

        .success-box h4 {
            color: #15803d;
        }

        .article-image {
            width: 100%;
            border-radius: var(--radius);
            margin: 30px 0;
            box-shadow: var(--shadow);
        }

        .faq-section {
            background: var(--gray-50);
            border-radius: var(--radius-lg);
            padding: 40px;
            margin: 40px 0;
        }

        .faq-section h2 {
            text-align: center;
            border-bottom: none;
            margin-bottom: 30px;
        }

        .faq-section h2::before {
            display: none;
        }

        .faq-item {
            background: var(--white);
            border-radius: var(--radius);
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .faq-question {
            padding: 20px 25px;
            font-weight: 700;
            color: var(--gray-800);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question:hover {
            background: var(--gray-50);
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--primary);
            font-weight: 300;
        }

        .faq-answer {
            padding: 0 25px 20px;
            color: var(--gray-600);
            line-height: 1.9;
            display: none;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .faq-item.active .faq-question::after {
            content: '−';
        }

        .cta-box {
            background: var(--gradient-primary);
            border-radius: var(--radius-xl);
            padding: 50px;
            text-align: center;
            color: white;
            margin: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
        }

        .cta-box h3 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
            border: none;
            padding: 0;
            color: white;
        }

        .cta-box p {
            font-size: 1.1rem;
            opacity: 0.95;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
            color: white;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: white;
            color: var(--primary);
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            position: relative;
            z-index: 1;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .cta-btn:hover {
            transform: translateY(-3px) scale(1.05);
        }

        .cta-phone {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 25px;
            position: relative;
            z-index: 1;
            flex-wrap: wrap;
        }

        .cta-phone a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .doctor-card {
            background: var(--white);
            border: 2px solid var(--gray-200);
            border-radius: var(--radius-lg);
            padding: 30px;
            display: flex;
            gap: 25px;
            align-items: center;
            margin: 30px 0;
            flex-wrap: wrap;
        }

        .doctor-avatar {
            width: 120px;
            height: 120px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 3rem;
            color: white;
            flex-shrink: 0;
        }

        .doctor-info h4 {
            font-size: 1.3rem;
            color: var(--gray-900);
            margin-bottom: 8px;
        }

        .doctor-info .title {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 12px;
        }

        .doctor-credentials {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .doctor-credentials span {
            background: var(--gray-100);
            padding: 5px 12px;
            border-radius: 50px;
            font-size: 13px;
            color: var(--gray-600);
        }

        .internal-links {
            background: var(--gray-50);
            border-radius: var(--radius);
            padding: 25px;
            margin: 30px 0;
        }

        .internal-links h4 {
            font-size: 1rem;
            color: var(--gray-700);
            margin-bottom: 15px;
        }

        .internal-links-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .internal-links a {
            color: var(--primary);
            text-decoration: none;
            font-size: 15px;
            padding: 10px 15px;
            background: var(--white);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .internal-links a:hover {
            background: var(--primary);
            color: white;
        }

        .sources-section {
            background: var(--gray-100);
            border-radius: var(--radius);
            padding: 30px;
            margin-top: 40px;
        }

        .sources-section h4 {
            font-size: 1rem;
            color: var(--gray-700);
            margin-bottom: 15px;
        }

        .sources-section ol {
            padding-right: 20px;
        }

        .sources-section li {
            margin-bottom: 10px;
            font-size: 14px;
            color: var(--gray-600);
        }

        .sources-section a {
            color: var(--primary);
        }

        .medical-disclaimer {
            background: #fef3c7;
            border: 1px solid #fcd34d;
            border-radius: var(--radius);
            padding: 20px;
            margin-top: 20px;
        }

        .medical-disclaimer p {
            font-size: 14px;
            color: #92400e;
            margin: 0;
        }

        @media (max-width: 768px) {
            .article-title {
                font-size: 1.8rem;
            }

            .ortho-article {
                padding: 30px 20px;
            }

            .ortho-article h2 {
                font-size: 1.5rem;
            }

            .ortho-article h3 {
                font-size: 1.2rem;
            }

            .doctor-card {
                flex-direction: column;
                text-align: center;
            }

            .internal-links-grid {
                grid-template-columns: 1fr;
            }

            .cta-box {
                padding: 30px 20px;
            }

            .cta-phone {
                flex-direction: column;
                gap: 15px;
            }

            .answer-first {
                margin: -20px 15px 30px;
                padding: 25px 20px;
            }
        }/* End custom CSS */