:root {
    --primary-color: #b92c2c;
    --secondary-color: #333;
    --bg-color: #fff;
    --light-bg-color: #f9f9f9;
    --text-color: #555;
    --font-family: 'Cairo', sans-serif;
}

body {
    font-family: var(--font-family);
    direction: rtl;
    margin: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Parallax Header */
.parallax-header {
    height: 100vh;
    background-image: url('2.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: justify;
    color: white;
}

.header-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px 50px;
    border-radius: 10px;
}

.header-content h1 {
    font-size: 4.5em;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.header-content p {
    font-size: 1.5em;
}

/* Main Content */
.article-container {
    max-width: 900px;
    margin: auto;
    padding: 50px 20px;
}

.intro-text {
    font-size: 1.5em;
    text-align: justify;
    line-height: 1.8;
    color: var(--secondary-color);
    margin-bottom: 100px;
}

/* Content Sections (Text & Image) */
.content-section {
    display: flex;
    gap: 40px;
    margin-bottom: 100px;
}
.content-section.reverse {
    flex-direction: row-reverse;
}
.text-content {
    flex: 1.5;
    text-align: justify;
}
.text-content h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    
}
.text-content .fa-quote-left {
    font-size: 0.8em;
    margin-left: 10px;
    
}
.text-content blockquote {
    font-size: 1.2em;
    font-style: italic;
    border-right: 4px solid var(--primary-color);
    padding-right: 15px;
    margin: 20px 0;
    text-align: justify;
}
.image-content {
    flex: 1;
        align-self: stretch; 

}
.image-content img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
        width: 100%;
    height: 100%; /* اجعل الصورة تملأ 100% من ارتفاع الصندوق */
    object-fit: cover; /* يمنع تشوه الصورة ويجعلها تغطي المساحة مع قص الأجزاء الزائدة */


}
.image-content img:hover {
    transform: scale(1.05);
}

/* Highlight Section (Stats) */
.highlight-section {
    background-color: var(--light-bg-color);
    text-align: center;
    padding: 60px 30px;
    border-radius: 10px;
    margin: 100px 0;
}
.highlight-section h2 {
    font-size: 2.8em;
    color: var(--secondary-color);
    margin-top: 0;
}
.highlight-section p {
    font-size: 1.8em;
    color: var(--text-color);
}
.highlight-section .counter {
    font-size: 4em;
    font-weight: 700;
    color: var(--primary-color);
}
.countries {
    margin-top: 20px;
}
.countries .country {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    margin: 5px;
    font-size: 1.1em;
}

/* Reasons Section */
.reasons-section {
    text-align: center;
    margin-bottom: 100px;
}
.reasons-section h2 {
    font-size: 2.8em;
    color: var(--secondary-color);
}
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.reason {
    background-color: var(--light-bg-color);
    padding: 30px;
    border-radius: 10px;
}
.reason .fas {
    font-size: 3em;
    color: var(--primary-color);
}
.reason h3 {
    font-size: 1.5em;
    margin: 15px 0 10px;
    color: var(--secondary-color);
}

footer {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--secondary-color);
    color: white;
    font-size: 1.2em;
}

/* Animation initial states */
.fade-in { opacity: 0; }
.slide-up { opacity: 0; transform: translateY(50px); }


/* أضف هذا التنسيق الجديد في أي مكان بملف style.css */
.header-content .author {
    font-size: 1.2em;
    font-style: italic;
    color: #e0e0e0; /* لون أفتح قليلاً */
    margin-top: 20px;
    opacity: 0.9;
}

  /* القسم الرئيسي الذي يحتوي كل شيء */
        .medical-opinion-section {
            max-width: 1100px;
            margin: auto;
            text-align: center;
        }

        /* عنوان القسم */
        .medical-opinion-section h2 {
            font-size: 2.8em;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }

        /* خط زخرفي تحت العنوان */
        .medical-opinion-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 100%;
            height: 4px;
            background-color: var(--primary-color);
        }

        /* حاوية البطاقات لترتيبها بشكل مرن */
        .opinion-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        /* تصميم بطاقة الرأي الواحدة */
        .opinion-card {
            background-color: var(--card-bg-color);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            border-top: 5px solid var(--primary-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .opinion-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
        }

        /* أيقونة البطاقة */
        .opinion-card .icon {
            font-size: 3em;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        /* مصدر الرأي (اسم الطبيب أو المنظمة) */
        .opinion-card .source {
            font-size: 1.3em;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 8px;
        }
        
        .opinion-card .title {
            font-size: 1em;
            color: #777;
            margin-bottom: 20px;
        }

        /* نص الاقتباس */
        .opinion-card blockquote {
            font-size: 1.1em;
            line-height: 1.8;
            color: var(--text-color);
            margin: 0;
            padding: 0;
            border: none;
            font-style: italic;
        }


                /* القسم الرئيسي */
        .reasons-section {
            max-width: 1200px;
            margin: auto;
            text-align: center;
        }

        /* عنوان القسم */
        .reasons-section h2 {
            font-size: 2.8em;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        /* الفقرة التمهيدية */
        .reasons-section .section-intro {
            font-size: 1.2em;
            color: var(--text-color);
            max-width: 800px;
            margin: 0 auto 50px auto; /* توسيط الفقرة */
            line-height: 1.8;
        }

        /* حاوية البطاقات */
        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            text-align: right;
        }

        /* تصميم البطاقة الواحدة */
        .reason-card {
            background-color: var(--card-bg-color);
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
            display: flex;
            align-items: center;
            gap: 20px; /* مسافة بين الأيقونة والنص */
            border-right: 5px solid var(--primary-color);
        }        .reason-card {
            background-color: var(--card-bg-color);
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
            display: flex;
            align-items: center;
            gap: 20px; /* مسافة بين الأيقونة والنص */
            border-right: 5px solid var(--primary-color);
        }

        .reason-card .icon {
            font-size: 2.5em;
            color: var(--primary-color);
            width: 50px; /* لضمان محاذاة النص بشكل جيد */
        }
        
        .reason-card p {
            font-size: 1.1em;
            color: var(--text-color);
            line-height: 1.7;
            margin: 0;
        }
     /* القسم الرئيسي */
        .legal-loopholes-section {
            max-width: 1200px;
            margin: auto;
        }

        /* عنوان القسم */
        .legal-loopholes-section h2 {
            text-align: center;
            font-size: 2.8em;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 50px;
        }
        
        /* حاوية المحتوى لتقسيمه لعمودين */
        .legal-content-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            align-items: center;
        }

        /* تنسيق نقاط المقارنة (مصر وكردستان) */
        .comparison-points {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .law-point {
            background-color: var(--light-bg-color);
            padding: 20px;
            border-radius: 8px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .law-point .icon {
            font-size: 1.8em;
            color: var(--primary-color);
            margin-top: 5px;
        }
        
        .law-point h4 {
            font-size: 1.3em;
            font-weight: 700;
            color: var(--secondary-color);
            margin: 0 0 5px 0;
        }

        .law-point p {
            font-size: 1.1em;
            line-height: 1.7;
            color: var(--text-color);
            margin: 0;
        }

        /* تصميم اقتباس المحامي */
        .lawyer-quote {
            background-color: var(--dark-card-bg);
            color: #b92c2c;
            padding: 35px;
            border-radius: 12px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .lawyer-quote blockquote {
            font-size: 1.25em;
            line-height: 1.8;
            font-style: italic;
            text-align: justify;
            border: none;
            margin: 0;
            padding: 0;
            position: relative;
            padding-right: 40px; /* مساحة لأيقونة الاقتباس */
        }
        
        .lawyer-quote blockquote::before {
            content: "\f10e"; /* أيقونة الاقتباس من Font Awesome */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--primary-color);
            font-size: 1.5em;
            position: absolute;
            right: 0;
            top: 0;
        }

        .lawyer-quote cite {
            display: block;
            text-align: left;
            margin-top: 20px;
            font-size: 1.1em;
            font-style: normal;
            font-weight: 600;
            color: #ccc;
        }

         /* القسم الرئيسي */
        .global-stats-section {
            max-width: 1000px;
            margin: auto;
        }

        /* عنوان القسم */
        .global-stats-section h2 {
            text-align: center;
            font-size: 2.8em;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 40px;
        }

        /* حاوية الرقم الصادم */
        .main-stat-container {
            background-color: var(--dark-bg-color);
            color: #000000;
            padding: 50px 30px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 50px;
        }
        
        .main-stat-container .icon {
            font-size: 3em;
            color: var(--primary-color);
        }

        .main-stat-container .stat-number {
            font-size: 6em;
            font-weight: 700;
            line-height: 1.1;
            color: #000000;
        }
        
        .main-stat-container .stat-label {
            font-size: 1.5em;
color: var(--secondary-color);        }
        
        .main-stat-container .stat-context {
            text-align: justify;
            font-size: 1.1em;
color: var(--secondary-color);            max-width: 600px;
            margin: 15px auto 0 auto;
            line-height: 1.7;
        }

        /* حاوية الانتشار الجغرافي */
        .geography-wrapper {
            margin-bottom: 50px;
        }

        .geography-wrapper h3 {
            font-size: 1.6em;
            color: var(--secondary-color);
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 10px;
            margin-bottom: 20px;
        }

        .countries-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .country-tag {
            
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 1.1em;
            font-weight: 600;
            
        }

        .hotspot {
            background-color: var(--primary-color);
            color: #fff;
        }

        .other {
            background-color: #e0e0e0;
            color: var(--secondary-color);
            
        }

        /* صندوق الخاتمة النهائية */
        .conclusion-statement {
            background-color: var(--light-bg-color);
            border-right: 5px solid var(--primary-color);
            padding: 30px;
            border-radius: 8px;
        }

        .conclusion-statement p {
            text-align: justify;
            font-size: 1.25em;
            line-height: 1.9;
            color: var(--secondary-color);
            margin: 0;
            font-weight: 600;
        }

