/* ===== الأساسيات ===== */
body {
  background-color: aqua;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* ===== الهيدر ===== */
header {
  background-color: navy;
  color: white;
  padding: 20px;
}

/* ===== العناوين ===== */
h1, h2 {
  margin: 10px 0;
}

/* ===== الفقرات ===== */
p {
  color: #222;
  font-size: 18px;
}

/* ===== القسم الرئيسي ===== */
main {
  background-color: white;
  width: 80%;
  margin: 20px auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* ===== العناصر داخل div ===== */
div {
  background-color: #f2f2f2;
  border-radius: 6px;
  padding: 10px;
  margin-top: 15px;
}
