@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
}

.container {
  max-width: 1000px;
  margin: 60px auto;
  background: white;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #1e3a8a;
}

.nav a {
  text-decoration: none;
  background: #1e3a8a;
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  margin-left: 10px;
  font-size: 14px;
}

.nav a:hover {
  background: #0f172a;
}

h1 {
  color: #111827;
}

h2 {
  color: #1e3a8a;
  margin-top: 25px;
}

p {
  line-height: 1.8;
  color: #444;
}

.ar {
  direction: rtl;
  font-family: 'Cairo', sans-serif;
}

.footer {
  margin-top: 40px;
  text-align: center;
  color: gray;
  font-size: 14px;
}
