/* إعادة تعيين الأسس */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cairo', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
  direction: rtl;
}

header {
  background-color: #005f73;
  color: #fff;
  text-align: center;
  padding: 20px;
}

header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2em;
}

/* تم حذف قائمة التنقل الرئيسية */

/* تنسيق المحتوى الرئيسي */
main {
  width: 90%;
  max-width: 1200px;
  background: #fff;
  margin: 20px auto;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

section {
  margin-bottom: 40px;
}

section h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #0a9396;
  border-bottom: 2px solid #0a9396;
  padding-bottom: 5px;
}

section p {
  margin-bottom: 15px;
  font-size: 1em;
  text-align: center;
}

section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
  text-align: center;
}

/* قسم روابط شات بنات */
section#chat-categories nav {
  margin-bottom: 15px;
}

section#chat-categories nav a {
  display: inline-block;
  margin: 5px 10px;
  color: #005f73;
  text-decoration: none;
  font-weight: bold;
  padding: 5px 10px;
  border: 1px solid #005f73;
  border-radius: 5px;
  transition: background 0.3s, color 0.3s;
}

section#chat-categories nav a:hover {
  background: #005f73;
  color: #fff;
}

section ul li {
  background: #e9d8a6;
  margin: 5px auto;
  padding: 10px;
  width: 90%;
  max-width: 600px;
  border-radius: 5px;
}

footer {
  background-color: #005f73;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9em;
}

@media (max-width: 768px) {
  header h1 {
    font-size: 2em;
  }
  /* تمت إزالة القواعد الخاصة بقائمة التنقل الرئيسية */
}













.intro-header {
    text-align: center;
    padding: 25px 15px;
    margin: 0 auto;
}

.intro-header h1 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.intro-header p {
    font-size: 18px;
    color: #444;
}

