.events-list-section {
  width: 100%;
  background: #0f4361;
  padding: 50px 80px 80px;
  direction: rtl;
}

.event-item {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 80px;
}

.event-icon {
  width: 95px;
  height: 95px;
  flex-shrink: 0;
}

.event-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.event-text {
  flex: 1;
  text-align: right;
}

.event-text h3 {
  color: #a5803b;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 12px;
}

.event-text p {
  color: #ffffff;
  font-size: 21px;
  line-height: 1.8;
  max-width: 1200px;
}

@media (max-width: 768px) {
  .events-list-section {
    padding: 40px 25px;
  }

  .event-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 55px;
  }

  .event-text {
    text-align: center;
  }

  .event-text h3 {
    font-size: 24px;
  }

  .event-text p {
    font-size: 16px;
  }
}