/* استيراد خط كايرو */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@600;700;900&display=swap');

body {
  font-family: 'Cairo', sans-serif;
  background-color: #ffffff;
  color: #2c2c2c; /* نص داكن */
  margin: 40px auto;
  max-width: 1000px;
  padding: 30px;
  border: 4px solid #0077b6; /* إطار ملون */
  border-radius: 15px;
  position: relative;
}

/* لوجو عائم */
body::before {
  content: "";
  background-image: url('https://freelancers-platfotm.digital-marketing-window.com/logo.png');
  background-size: 100px;
  background-repeat: no-repeat;
  background-position: top center;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  z-index: 10;
}

/* تنسيق العنوان */
h1, h2, h3 {
  color: #111c2f; /* لون غامق */
  font-weight: 900;
  text-shadow: 0 0 6px #002244, 0 0 12px #003366;
  animation: glow 2s ease-in-out infinite alternate;
  margin-top: 60px;
}

/* تأثير توهج غامق */
@keyframes glow {
  from {
    text-shadow: 0 0 8px #002244;
  }
  to {
    text-shadow: 0 0 20px #003366;
  }
}

/* الروابط */
a {
  color: #b30000; /* أحمر داكن */
  font-weight: 700;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* فقرات النص */
p {
  font-size: 18px;
  line-height: 1.7;
  color: #333333; /* رمادي داكن */
}

/* تخصيص الحاويات */
.container {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 51, 102, 0.1);
}
