

/* القسم الرئيسي */
.activities {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* العنوان */
.activities-title {
  font-size: 40px;
  margin-bottom: 20px;
  color: #1e3d59;
}

/* الفقرة التعريفية */
.activities-intro {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 20px;
  color: #555;
  line-height: 1.8;
}

/* الاقتباس */
.quote {
  font-size: 20px;
  color: #2980b9;
  margin-bottom: 40px;
  font-style: italic;
}

/* البطاقات */
.activity-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 30px;
  padding: 0 15px;
}

.activity-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.activity-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* الصور داخل البطاقات */
.activity-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

/* العناوين داخل البطاقات */
.activity-card h3 {
  font-size: 22px;
  color: #1e3d59;
  margin-bottom: 10px;
}

/* النصوص داخل البطاقات */
.activity-card p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

/* الموبايل */
@media (max-width: 768px) {
  .activities-title {
    font-size: 28px;
  }

  .activities-intro {
    font-size: 16px;
  }

  .activity-card img {
    width: 70px;
    height: 70px;
  }
}