 /* إعدادات عامة */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', 'Tajawal', sans-serif;
  }
  
  body {
    direction: rtl;
    text-align: right;
    line-height: 1.6;
    background-color: #f5f5f5;
  }
  
  /* تنسيق الفوتر */
  .footer {
    background-color: #121212;
    color: #ffffff;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  
  /* قسم معلومات المنظمة */
  .org-info {
    flex: 1 1 300px;
    position: relative;
  }
  
  .org-info h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
  }
  
  .org-info h3::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #2E7D32);
    border-radius: 2px;
  }
  
  .org-info p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
  }
  
  /* قسم الروابط السريعة */
  .quick-links {
    flex: 1 1 200px;
  }
  
  .quick-links h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
  }
  
  .quick-links h3::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #2E7D32);
    border-radius: 2px;
  }
  
  .quick-links ul {
    list-style: none;
  }
  
  .quick-links ul li {
    margin-bottom: 0.5rem;
    transition: transform 0.3s;
  }
  
  .quick-links ul li:hover {
    transform: translateX(-5px);
  }
  
  .quick-links ul li a {
    color: #e0e0e0;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s;
    position: relative;
    padding-right: 20px;
  }
  
  .quick-links ul li a::before {
    content: '◄';
    position: absolute;
    right: 0;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
  }
  
  .quick-links ul li a:hover {
    color: #4CAF50;
  }
  
  .quick-links ul li a:hover::before {
    opacity: 1;
    transform: translateX(-5px);
  }
  
  /* قسم التواصل الاجتماعي */
  .social-contacts {
    flex: 1 1 300px;
  }
  
  .social-contacts h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
  }
  
  .social-contacts h3::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #2E7D32);
    border-radius: 2px;
  }
  
  .social-contacts p {
    color: #e0e0e0;
    margin-bottom: 1rem;
  }
  
  .social-icons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
  }
  
  .social-link:hover {
    color: #4CAF50;
    transform: translateY(-3px);
  }
  
  .social-link img {
    width: 24px;
    height: 24px;
    margin-left: 10px;
    border-radius: 50%;
    background-color: #333;
    padding: 3px;
    transition: background-color 0.3s;
  }
  
  .social-link:hover img {
    background-color: #4CAF50;
  }
  
  .ltr-text {
    direction: ltr;
    display: inline-block;
  }
  
  /* حقوق النشر */
  .copyright {
    width: 100%;
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdbdbd;
    font-size: 0.9rem;
  }
  
  /* تأثيرات إضافية */
  .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #2E7D32, #4CAF50);
  }
  
  /* تجاوب مع الشاشات المختلفة */
  @media screen and (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    
    .org-info, .quick-links, .social-contacts {
      flex: 1 1 100%;
    }
  }
  
  @media screen and (max-width: 480px) {
    .footer {
      padding: 2rem 0 1rem;
    }
    
    .footer-container {
      padding: 0 15px;
    }
    
    .org-info h3, .quick-links h3, .social-contacts h3 {
      font-size: 1.2rem;
    }
  }