/* انسخ هذا الكود إلى about.css أو ملف صفحة "عنا" */

.about-article {
  background: #fff;
  color: #232323;
  border-radius: 2rem 0.5rem 2rem 0.5rem / 1.5rem 2rem 0.5rem 2rem;
  box-shadow: 0 6px 32px rgba(44,62,80,0.10), 0 1.5px 6px rgba(44,62,80,0.07);
  padding: 2rem 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
  font-family: 'Cairo', Arial, sans-serif;
  transition: box-shadow 0.2s, transform 0.2s;
}
.about-article::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #c49b3a33 0%, #fff0 100%);
  border-radius: 50%;
  z-index: 0;
}
.about-article h3 {
  color: #c49b3a;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: bold;
  position: relative;
  z-index: 1;
}
.about-article p {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
.about-article a {
  display: inline-block;
  background: #c49b3a;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 1.5rem 0.5rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s, transform 0.2s;
  position: relative;
  z-index: 1;
}
.about-article a:hover {
  background: #a07c2a;
  transform: translateY(-2px) scale(1.04);
}

/* الوضع الليلي لعناصر صفحة عنا - أوضح وأكثر تباين */
body.dark-mode .about-article {
  background: #2e3238 !important;   /* لون أوضح وأفتح من الداكن السابق */
  color: #f5f5f5 !important;
  box-shadow: 0 8px 32px rgba(44,62,80,0.18), 0 2px 8px rgba(44,62,80,0.10);
  border-radius: 2rem 0.5rem 2rem 0.5rem / 1.5rem 2rem 0.5rem 2rem;
}

body.dark-mode .about-article h2,
body.dark-mode .about-article h3 {
  color: #ffd700 !important;           /* عناوين ذهبية */
}

body.dark-mode .about-article p,
body.dark-mode .about-article ul,
body.dark-mode .about-article li {
  color: #e0e0e0 !important;           /* نص أوضح */
  font-size: 1.13rem;
  line-height: 1.9;
}

body.dark-mode .about-article a {
  background: #ffd700 !important;
  color: #23272a !important;
  font-weight: bold;
  border-radius: 1.5rem 0.5rem;
  box-shadow: 0 2px 8px #0002;
}

body.dark-mode .about-article a:hover {
  background: #c49b3a !important;
  color: #fff !important;
  box-shadow: 0 4px 16px #0003;
}