
        /* -------------------- 1. إعدادات المتغيرات (Theme Colors) -------------------- */
        :root {
            --primary-color: #5d9a5d; /* Dark Green */
            --secondary: #8cbf8c; /* Light Green */
            --cta-color: #6a8c43; /* Olive Green */
            --text-dark: #333;
            --text-light: #555;
            --light: #ffffff;
            --background-light: #f7f9fb;
            --border-radius-card: 24px;
            --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --gradient-bg: linear-gradient(135deg, #f0f8f0 0%, #e8f2e8 100%);
            --accent: #4a7c4a;
            --success: #4caf50;
            --warning: #ff9800;
            --error: #f44336;
            --transition: all 0.3s ease;
        }

        /* -------------------- 2. إعادة تعيين وإعدادات أساسية -------------------- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Tajawal', sans-serif;
            color: var(--text-dark);
            background-color: var(--background-light);
            direction: rtl; 
            line-height: 1.7;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'El Messiri', serif;
            font-weight: 700;
        }

        a {
            text-decoration: none;
            color: var(--cta-color);
            transition: var(--transition);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* -------------------- 3. شريط التنقل (Navbar) -------------------- */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            background-color: var(--light);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-logo .logo-img {
            height: 40px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
        }

        .navbar-links {
            flex-grow: 1;
            text-align: center;
            display: flex;
            justify-content: center;
        }

        .navbar-links ul {
            list-style: none;
            display: flex;
        }

        .navbar-links ul li a {
            margin: 0 15px;
            color: var(--text-dark);
            font-weight: 500;
            padding: 5px 0;
            position: relative;
            transition: var(--transition);
        }

        .navbar-links ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s ease;
        }

        .navbar-links ul li a:hover {
            color: var(--primary-color);
        }

        .navbar-links ul li a:hover::after {
            width: 100%;
        }

        .navbar-cta-mobile {
            display: flex;
            align-items: center;
        }

        .cta-button {
            background-color: var(--cta-color);
            color: white;
            font-weight: 500;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            text-decoration: none;
            font-family: 'Tajawal', sans-serif;
            padding: 10px 25px; 
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--accent);
            z-index: -1;
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(106, 140, 67, 0.4);
        }

        .cta-button:hover::before {
            opacity: 1;
        }

        .whatsapp-button {
            padding: 8px 20px;
            font-size: 1rem;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
            background-color: var(--success);
        }

        .whatsapp-button i {
            font-size: 1.2rem;
        }

        .hamburger-menu {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            width: 30px;
            height: 30px;
            position: relative;
            margin-right: 15px;
        }

        .hamburger-line {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: var(--primary-color);
            border-radius: 2px;
            transition: var(--transition);
        }

        .hamburger-line:nth-child(1) {
            top: 6px;
        }

        .hamburger-line:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
        }

        .hamburger-line:nth-child(3) {
            bottom: 6px;
        }

        .hamburger-menu.active .hamburger-line:nth-child(1) {
            transform: translateY(7px) rotate(45deg); 
        }

        .hamburger-menu.active .hamburger-line:nth-child(2) {
            opacity: 1;
        }

        .hamburger-menu.active .hamburger-line:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg); 
        }

        /* -------------------- 4. قسم خطوات العملية -------------------- */
        .workflow-section {
            padding: 80px 5%;
            background: var(--gradient-bg);
            position: relative;
            overflow: hidden;
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 40px;
            padding-top: 20px;
            color: var(--primary-color);
            position: relative;
            display: block; 
            width: fit-content; 
            margin-left: auto;
            margin-right: auto; 
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%; 
            transform: translateX(-50%); 
            width: 80px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }

        .workflow-container {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            position: relative;
            margin-top: 50px;
        }

        .workflow-line {
            position: absolute;
            top: 80px;
            right: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(to left, var(--primary-color), var(--secondary));
            z-index: 1;
        }

        .workflow-step {
            position: relative;
            z-index: 2;
            text-align: center;
            width: 20%;
            padding: 0 10px;
        }

        .step-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--light);
            border: 4px solid var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: var(--transition);
            box-shadow: var(--box-shadow);
        }

        .step-icon {
            font-size: 2rem;
            color: var(--primary-color);
            transition: var(--transition);
        }

        .workflow-step:hover .step-circle {
            transform: scale(1.1);
            border-color: var(--primary-color);
            box-shadow: 0 8px 16px rgba(93, 154, 93, 0.3);
        }

        .workflow-step:hover .step-icon {
            color: var(--accent);
            transform: rotate(10deg);
        }

        .workflow-step h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        .workflow-step p {
            color: var(--text-light);
            line-height: 1.6;
        }

        .step-number {
            position: absolute;
            top: -10px;
            right: 50%;
            transform: translateX(50%);
            width: 30px;
            height: 30px;
            background: var(--cta-color);
            color: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.9rem;
        }

        /* -------------------- 5. قسم الأسئلة الشائعة -------------------- */
        .faq-section {
            padding: 80px 5%;
            background-color: var(--light);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--light);
            border-radius: var(--border-radius-card);
            box-shadow: var(--box-shadow);
            margin-bottom: 20px;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid rgba(93, 154, 93, 0.1);
        }

        .faq-item:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--background-light);
            transition: var(--transition);
        }

        .faq-question h3 {
            margin: 0;
            font-size: 1.2rem;
            color: var(--primary-color);
        }

        .faq-icon {
            font-size: 1.2rem;
            color: var(--primary-color);
            transition: var(--transition);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        /* -------------------- 6. قسم الإجراء -------------------- */
        .cta-section {
            padding: 80px 5%;
            text-align: center;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent) 100%);
            color: var(--light);
        }

        .cta-section h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--light);
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-large {
            padding: 15px 40px;
            font-size: 1.2rem;
            background: var(--light);
            color: var(--primary-color);
        }

        .cta-large:hover {
            background: var(--background-light);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* -------------------- 7. القسم الختامي (Footer) -------------------- */
        .footer {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: #ecf0f1;
            padding: 50px 5% 20px;
            font-size: 0.9rem;
            text-align: right;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-logo .logo-img {
            height: 45px;
            width: auto;
            object-fit: contain;
            margin-bottom: 15px;
            filter: brightness(0) invert(1);
        }

        .footer-about p {
            color: #bdc3c7;
            line-height: 1.8;
        }

        .footer-links h4, .footer-social h4, .footer-support h4 {
            color: var(--secondary);
            margin-bottom: 15px;
            font-family: 'El Messiri', serif;
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
        }

        .footer-links ul li a {
            color: #bdc3c7;
            display: block;
            margin-bottom: 8px;
            transition: var(--transition);
            position: relative;
            padding-right: 10px;
        }

        .footer-links ul li a::before {
            content: '\f105'; 
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 0;
            opacity: 1;
        }

        .footer-links ul li a:hover {
            color: var(--light);
            padding-right: 15px;
        }

        .footer-links ul li a:hover::before {
            opacity: 1;
        }

        .footer-support .support-icons-list {
            list-style: none;
            padding: 0;
        }

        .footer-support .support-icons-list a {
            color: #bdc3c7;
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            transition: var(--transition);
        }

        .footer-support .support-icons-list a i {
            font-size: 1.1rem;
            margin-left: 10px;
            color: var(--secondary);
            min-width: 1.1rem;
            transition: transform 0.3s;
        }

        .footer-support .support-icons-list a:hover {
            color: var(--light);
        }

        .footer-support .support-icons-list a:hover i {
            transform: translateX(5px);
        }

        .footer-social .social-icons {
            display: flex;
            gap: 15px;
        }

        .footer-social .social-icons a {
            color: #bdc3c7;
            font-size: 1.5rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }

        .footer-social .social-icons a:hover {
            color: var(--light);
            background: var(--secondary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            color: #bdc3c7;
        }

        /* -------------------- 8. الاستجابة (Responsive Design) -------------------- */
        @media (max-width: 900px) {
            .navbar-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px; 
                right: 0;
                width: 100%;
                background-color: var(--light);
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
                padding: 15px 0;
                flex-grow: unset;
                justify-content: unset;
            }
            
            .navbar-links.active {
                display: flex;
            }
            
            .navbar-links ul {
                flex-direction: column;
                text-align: right;
                padding-right: 5%;
            }
            
            .navbar-links ul li a {
                padding: 10px 0;
                margin: 0;
                display: block;
                text-align: right;
            }
            
            .hamburger-menu {
                display: block;
            }
            
            .whatsapp-button {
                display: none;
            }
            
            .workflow-container {
                flex-direction: column;
                align-items: center;
            }
            
            .workflow-step {
                width: 100%;
                margin-bottom: 40px;
                display: flex;
                align-items: flex-start;
                text-align: right;
            }
            
            .step-circle {
                margin: 0 20px 0 0;
                flex-shrink: 0;
            }
            
            .workflow-line {
                display: none;
            }
            
            .step-content {
                text-align: right;
            }
            
            .step-number {
                top: 0;
                right: 0;
                transform: none;
            }
        }

        @media (max-width: 576px) {
            .section-title {
                font-size: 2rem;
            }
            
            .workflow-step {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .step-circle {
                margin: 0 auto 15px;
            }
            
            .step-number {
                top: -10px;
                right: 50%;
                transform: translateX(50%);
            }
            
            .cta-section h2 {
                font-size: 1.8rem;
            }
            
            .cta-section p {
                font-size: 1rem;
            }
        }
    