css
/* إعدادات عامة */
body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  margin: 0;
  background-color: #f2f2f2;
  direction: rtl;
}

/* رأس الصفحة */
header {
  background-color: #004080;
  color: white;
  text-align: center;
  padding: 20px;
}
header img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: white;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  object-fit: contain;

}

/* القائمة */
nav {
  background-color: #003060;
  padding: 10px;
  text-align: center;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffcc00;
}

/* المحتوى */
section {
  padding: 40px;
  background: white;
  margin: 20px auto;
  max-width: 900px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* التذييل */
footer {
  background-color: #004080;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}
.ac-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}
.ac-gallery img {
  width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

