/* 1. إجبار جميع النصوص والأرقام والرموز بالداخل على التلون بالأخضر الفاتح */
[class*="card"] *, 
[class*="pricing"] *, 
[class*="package"] * {
    color: #00FF87 !important;
    -webkit-text-fill-color: #00FF87 !important;
    text-shadow: none !important;
    background-image: none !important;
    font-weight: 700 !important;
    opacity: 1 !important;
}

/* 2. إعادة رسم وتثبيت الإطار الأخضر الخارجي للباقة بشكل منفصل */
.pricing-card, 
.package-card, 
[class*="card"] {
    border: 1px solid #26d07c !important;
    border-radius: 8px !important;
}


/* منع سحب وتحديد الصور */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}




