.elementor-2052 .elementor-element.elementor-element-f42a49c{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-2052 .elementor-element.elementor-element-f42a49c > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-2052 .elementor-element.elementor-element-0468312{--item-display:flex;--read-more-alignment:1;--grid-row-gap:35px;--grid-column-gap:30px;}.elementor-2052 .elementor-element.elementor-element-0468312 .elementor-posts-container .elementor-post__thumbnail{padding-bottom:calc( 0.66 * 100% );}.elementor-2052 .elementor-element.elementor-element-0468312:after{content:"0.66";}.elementor-2052 .elementor-element.elementor-element-0468312 .elementor-post__thumbnail__link{width:100%;}.elementor-2052 .elementor-element.elementor-element-0468312 .elementor-post__meta-data span + span:before{content:"///";}.elementor-2052 .elementor-element.elementor-element-0468312.elementor-posts--thumbnail-left .elementor-post__thumbnail__link{margin-right:20px;}.elementor-2052 .elementor-element.elementor-element-0468312.elementor-posts--thumbnail-right .elementor-post__thumbnail__link{margin-left:20px;}.elementor-2052 .elementor-element.elementor-element-0468312.elementor-posts--thumbnail-top .elementor-post__thumbnail__link{margin-bottom:20px;}@media(max-width:767px){.elementor-2052 .elementor-element.elementor-element-0468312 .elementor-posts-container .elementor-post__thumbnail{padding-bottom:calc( 0.5 * 100% );}.elementor-2052 .elementor-element.elementor-element-0468312:after{content:"0.5";}.elementor-2052 .elementor-element.elementor-element-0468312 .elementor-post__thumbnail__link{width:100%;}}/* Start custom CSS */:root {
            --primary-color: #1a1a2e;
            --primary-dark: #043d51;
            --primary-light: #1a1a2e;
            --accent-color: #cc9200;
            --accent-light: #ffc800;
            --success-color: #10b981;
            --warning-color: #f59e0b;
            --danger-color: #ef4444;
            --text-dark: #1e293b;
            --text-medium: #475569;
            --text-light: #64748b;
            --bg-light: #f8fafc;
            --bg-cream: #fefdfb;
            --white: #ffffff;
            --border-color: #e2e8f0;
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
            --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
            --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cairo', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.8;
            font-size: 17px;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero {
            background: var(--gradient-primary);
            padding: 60px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::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.3;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            color: var(--white);
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .hero-subtitle {
            color: rgba(255,255,255,0.95);
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .breadcrumb {
            background: var(--white);
            padding: 15px 20px;
            border-bottom: 1px solid var(--border-color);
        }

        .breadcrumb-list {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            font-size: 0.9rem;
            color: var(--text-light);
            max-width: 900px;
            margin: 0 auto;
        }

        .breadcrumb-list a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .breadcrumb-list a:hover {
            text-decoration: underline;
        }

        /* Main Content */
        .main-content {
            background: var(--white);
            padding: 50px 20px;
        }

        .article-content {
            max-width: 800px;
            margin: 0 auto;
        }

        /* Featured Snippet Box */
        .featured-snippet {
            background: linear-gradient(135deg, #f4f3d6 0%, #ffedbf 100%);
            border-right: 5px solid var(--accent-color);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 40px;
            position: relative;
        }

        .featured-snippet::before {
            content: '✓';
            position: absolute;
            top: -15px;
            right: 20px;
            background: var(--success-color);
            color: white;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .featured-snippet-title {
            color: var(--primary-dark);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .featured-snippet p {
            color: var(--text-medium);
            line-height: 1.9;
        }

        /* Section Headings */
        h2 {
            color: var(--primary-dark);
            font-size: 1.7rem;
            font-weight: 700;
            margin: 50px 0 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid var(--accent-color);
            position: relative;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -3px;
            right: 0;
            width: 60px;
            height: 3px;
            background: var(--primary-color);
        }

        h3 {
            color: var(--primary-color);
            font-size: 1.3rem;
            font-weight: 700;
            margin: 35px 0 18px;
        }

        h4 {
            color: var(--text-dark);
            font-size: 1.15rem;
            font-weight: 600;
            margin: 25px 0 12px;
        }

        p {
            color: var(--text-medium);
            margin-bottom: 20px;
            text-align: justify;
        }

        /* Tables */
        .table-container {
            overflow-x: auto;
            margin: 30px 0;
            border-radius: 12px;
            box-shadow: var(--shadow-md);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: var(--white);
            min-width: 600px;
        }

        thead {
            background: var(--gradient-primary);
        }

        th {
            color: var(--white);
            padding: 18px 15px;
            text-align: right;
            font-weight: 600;
            font-size: 0.95rem;
        }

        td {
            padding: 16px 15px;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-medium);
            font-size: 0.95rem;
            vertical-align: top;
        }

        tbody tr:hover {
            background: var(--bg-light);
        }

        tbody tr:last-child td {
            border-bottom: none;
        }

        /* Warning Box */
        .warning-box {
            background: linear-gradient(135deg, #fef2f2 0%, #fff5f5 100%);
            border-right: 5px solid var(--danger-color);
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
        }

        .warning-box-title {
            color: var(--danger-color);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .warning-item {
            margin-bottom: 18px;
            padding-right: 25px;
            position: relative;
        }

        .warning-item::before {
            content: '️';
            position: absolute;
            right: 0;
            top: 2px;
            font-size: 0.9rem;
        }

        .warning-item strong {
            color: var(--danger-color);
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .service-card {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 25px;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: var(--accent-color);
        }

        .service-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-accent);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .service-card h4 {
            color: var(--primary-dark);
            margin: 0 0 12px;
            font-size: 1.1rem;
        }

        .service-card p {
            font-size: 0.95rem;
            margin: 0;
            color: var(--text-light);
        }

        /* Expert Quote */
        .expert-quote {
            background: linear-gradient(135deg, #f0fdf4 0%, #f0fff4 100%);
            border-radius: 16px;
            padding: 35px;
            margin: 40px 0;
            position: relative;
            border: 1px solid #bbf7d0;
        }

        .expert-quote::before {
            content: '💡';
            position: absolute;
            top: -18px;
            right: 25px;
            font-size: 2rem;
            background: var(--white);
            padding: 5px 10px;
            border-radius: 10px;
        }

        .expert-quote-title {
            color: var(--success-color);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .expert-quote blockquote {
            color: var(--text-medium);
            font-style: italic;
            line-height: 1.9;
            margin-bottom: 15px;
        }

        .expert-quote cite {
            color: var(--primary-dark);
            font-weight: 600;
            font-style: normal;
        }

        /* Myths Section */
        .myth-item {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 20px 25px;
            margin-bottom: 20px;
        }

        .myth-title {
            color: var(--danger-color);
            font-weight: 700;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .myth-title::before {
            content: '❌';
        }

        .truth-title {
            color: var(--success-color);
            font-weight: 600;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .truth-title::before {
            content: '';
        }

        /* Preparation Section */
        .prep-section {
            background: var(--bg-light);
            border-radius: 12px;
            padding: 25px;
            margin: 20px 0;
        }

        .prep-section h4 {
            color: var(--primary-color);
            margin-top: 0;
        }

        .prep-list {
            list-style: none;
            padding: 0;
        }

        .prep-list li {
            padding: 8px 0 8px 30px;
            position: relative;
            color: var(--text-medium);
        }

        .prep-list li::before {
            content: '→';
            position: absolute;
            right: 0;
            color: var(--accent-color);
            font-weight: bold;
        }

        /* Emergency Box */
        .emergency-box {
            background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
            border-right: 5px solid var(--warning-color);
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
        }

        .emergency-title {
            color: var(--warning-color);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .emergency-item {
            margin-bottom: 15px;
            padding-right: 30px;
            position: relative;
        }

        .emergency-item::before {
            content: '🚨';
            position: absolute;
            right: 0;
        }

        /* Why Us Section */
        .why-us-box {
            background: var(--gradient-primary);
            border-radius: 16px;
            padding: 40px;
            margin: 40px 0;
            color: var(--white);
        }

        .why-us-box h2 {
            color: var(--white);
            border-bottom-color: rgba(255,255,255,0.3);
            margin-top: 0;
        }

        .why-us-box h2::after {
            background: rgba(255,255,255,0.5);
        }

        .why-us-box p {
            color: rgba(255,255,255,0.95);
        }

        /* FAQ Section */
        .faq-section {
            margin: 40px 0;
        }

        .faq-item {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .faq-question {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--primary-dark);
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: var(--bg-light);
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--accent-color);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 0 25px 20px;
            max-height: 500px;
        }

        .faq-answer p {
            margin: 0;
        }

        /* Medical Disclaimer */
        .disclaimer {
            background: #f8fafc;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 25px;
            margin: 40px 0;
        }

        .disclaimer-title {
            color: var(--warning-color);
            font-weight: 700;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .disclaimer p {
            font-size: 0.95rem;
            margin: 0;
        }

        /* Doctor Card */
        .doctor-card {
            background: var(--white);
            border: 2px solid var(--accent-color);
            border-radius: 20px;
            padding: 40px;
            margin: 40px 0;
            text-align: center;
            box-shadow: var(--shadow-lg);
        }

        .doctor-image {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--accent-color);
            margin-bottom: 25px;
        }

        .doctor-name {
            color: var(--primary-dark);
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .doctor-title {
            color: var(--accent-color);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .doctor-credentials {
            text-align: right;
            max-width: 500px;
            margin: 0 auto 25px;
        }

        .credential-item {
            padding: 8px 0;
            color: var(--text-medium);
            font-size: 0.95rem;
            border-bottom: 1px solid var(--border-color);
        }

        .credential-item:last-child {
            border-bottom: none;
        }

        .doctor-contact {
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: center;
            margin-top: 25px;
        }

        .contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 35px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .contact-btn.primary {
            background: var(--gradient-primary);
            color: var(--white);
        }

        .contact-btn.primary:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-lg);
        }

        .contact-btn.secondary {
            background: var(--white);
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .contact-btn.secondary:hover {
            background: var(--primary-color);
            color: var(--white);
        }

        /* Sources Section */
        .sources-section {
            background: var(--bg-light);
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
        }

        .sources-title {
            color: var(--primary-dark);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .source-item {
            padding: 10px 0;
            color: var(--text-light);
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border-color);
        }

        .source-item:last-child {
            border-bottom: none;
        }

        .update-info {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            font-size: 0.9rem;
            color: var(--text-light);
        }

        /* Table of Contents */
        .toc {
            background: var(--bg-light);
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
        }

        .toc-title {
            color: var(--primary-dark);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .toc-list {
            list-style: none;
            padding: 0;
            counter-reset: toc-counter;
        }

        .toc-list li {
            counter-increment: toc-counter;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .toc-list li:last-child {
            border-bottom: none;
        }

        .toc-list a {
            color: var(--text-medium);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: color 0.3s ease;
        }

        .toc-list a::before {
            content: counter(toc-counter);
            background: var(--accent-color);
            color: white;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .toc-list a:hover {
            color: var(--primary-color);
        }

        /* Footer */
        footer {
            background: var(--primary-dark);
            color: var(--white);
            padding: 40px 20px;
            text-align: center;
        }

        footer p {
            color: rgba(255,255,255,0.8);
            margin-bottom: 10px;
        }

        footer a {
            color: var(--accent-light);
            text-decoration: none;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            h2 {
                font-size: 1.4rem;
            }

            .doctor-card {
                padding: 25px;
            }

            .doctor-image {
                width: 140px;
                height: 140px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Criteria Section */
        .criteria-section {
            margin: 30px 0;
        }

        .criterion {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 20px;
            border-right: 4px solid var(--accent-color);
        }

        .criterion-number {
            background: var(--gradient-accent);
            color: white;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-left: 15px;
        }

        .criterion h4 {
            display: inline;
            color: var(--primary-dark);
            margin: 0;
        }

        .criterion p {
            margin: 15px 0 0;
        }/* End custom CSS */