.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;
  }
}
.card-text p {
    text-align: justify !important;
    text-align-last: right;
    line-height: 2;
}

/* =========================
   ACTIVITIES PAGE RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .events-list-section {
    padding: 50px 45px 70px;
  }

  .event-text h3 {
    font-size: 26px;
  }

  .event-text p {
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  .events-list-section {
    padding: 35px 20px 55px;
  }

  .event-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 45px;
  }

  .event-icon {
    width: 65px;
    height: 65px;
  }

  .event-text {
    text-align: right;
  }

  .event-text h3 {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 8px;
  }

  .event-text p {
    font-size: 15px;
    line-height: 2;
    text-align: justify;
    text-align-last: right;
  }
}

@media (max-width: 520px) {
  .events-list-section {
    padding: 30px 16px 45px;
  }

  .event-item {
    gap: 14px;
    margin-bottom: 38px;
  }

  .event-icon {
    width: 52px;
    height: 52px;
  }

  .event-text h3 {
    font-size: 19px;
  }

  .event-text p {
    font-size: 14px;
    line-height: 1.9;
  }
}

/* MOBILE DROPDOWN FINAL FIX */
@media (max-width: 768px) {

  .main-header {
    height: 85px !important;
    padding: 0 20px !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    background: #ffffff !important;
    position: sticky !important;
    top: 0;
    z-index: 99999;
  }

  .logo {
    position: static !important;
    height: 70px !important;
    margin: 0 !important;
    order: 2;
  }

  .menu-toggle {
    display: block !important;
    order: 1;
    background: transparent !important;
    border: none !important;
    color: #0f4361 !important;
    font-size: 34px !important;
    cursor: pointer;
    z-index: 100000;
  }

  .main-header .nav-menu {
    display: none !important;
    position: absolute !important;
    top: 85px !important;
    right: 0 !important;
    width: 100% !important;
    background: #0f4361 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 10px 0 !important;
    box-shadow: 0 12px 25px rgba(0,0,0,.25);
  }

  .main-header .nav-menu.show {
    display: flex !important;
  }

  .main-header .nav-menu a {
    color: #ffffff !important;
    padding: 15px 25px !important;
    text-align: right !important;
    border-bottom: 1px solid rgba(255,255,255,.15);
  }

  .main-header .nav-menu a.active::after {
    display: none !important;
  }
}