body {
  font-family: "Tajawal", sans-serif;
  line-height: 1.8;
  color: #555;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0px;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.article-container {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  width: 95%;
  max-width: 1200px;
}
.article-title {
  color: #343a40;
  font-size: 2.5em;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 700;
}
.article-paragraph {
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 2;
  text-align: right;
}
.article-subtitle {
  color: #007bff;
  font-size: 1.8em;
  margin-top: 35px;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: right;
}
.keyword {
  font-weight: bolder;
  color: #dc3545;
}
.list-item {
  margin-bottom: 15px;
  list-style-type: disc;
  margin-right: 30px;
  font-size: 1.05em;
  text-align: right;
}
.point {
  margin-bottom: 18px;
  font-size: 1.1em;
  line-height: 2;
  text-align: right;
  padding-right: 25px;
  position: relative;
}
.point::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: #28a745;
}

.other-services-header-title h2 {
  text-align: center;
  margin-top: 20px;
}

/* تصميم متجاوب */
@media (max-width: 768px) {
  .article-container {
    padding: 30px;
    width: 100%;
    padding-top: 140px;
  }
  .article-title {
    font-size: 2em;
    margin-bottom: 20px;
  }
  .article-paragraph,
  .list-item,
  .point {
    font-size: 1em;
    line-height: 1.8;
    margin-bottom: 15px;
  }
  .article-subtitle {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 18px;
  }
}

@media (max-width: 576px) {
  .article-title {
    font-size: 1.8em;
  }
  .article-subtitle {
    font-size: 1.3em;
  }
}
