.text-block {
  font-size: 20px;
  color: #31544b;
  line-height: 1.8;
  margin: 20px auto;
}

.table-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.table-caption h3 {
  color: #31544b;
  font-size: 24px;
  text-align: center;
  margin: 2px;
}
.line-caption {
  height: 4px;
  display: flex;
  align-items: center;
  flex-grow: 1;
  background-color: rgba(252, 180, 74, 0.4);
}

.card-grid {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  margin-top: 30px;
}

.activities_card {
  background-color: #ffffff;
  flex: 1;
  padding: 35px 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  text-align: right;
  box-sizing: border-box;
}

.activities_card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 20px;
}

.activities_card p {
  color: #163029;
  font-size: 18px;
  margin: 10px 0;
  min-height: 50px;
  display: flex;
  align-items: center;
}

.activities_card h3 {
  margin: 10px 0;
  font-size: 30px;
  color: #FCB44A;
  min-height: 40px;
  display: flex;
  align-items: center;
}

.activities_card span {
  color: #5E6863;
  font-size: 14px;
  font-weight: lighter;
  min-height: 30px;
  display: flex;
  align-items: center;
}



.table-container {
  overflow-x: auto;
  margin: 30px auto;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
}
thead {
  text-align: center;
}
th,
td {
  padding: 20px 30px;
  font-size: 16px;
  background-color: #ffffff;
  text-align: center;
}
td:first-child {
  text-align: start;
}
td:last-child {
  font-weight: bold;
}

th {
  background-color: #73837f;
  color: white;
  padding: 30px;
  text-align: center;
}

tr:nth-child(even) td {
  background-color: rgba(255, 255, 255, 0.5);
}


@media (max-width: 1025px) {


}
@media (max-width: 992px) {
  .card-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .activities_card {
    width: 100%;
    max-width: 400px;
    padding: 25px 20px;
    gap: 20px;
  }

  .activities_card h3 {
    font-size: 24px;
  }

  .activities_card p {
    font-size: 16px;
  }

  .activities_card span {
    font-size: 13px;
  }
  
}




@media (max-width: 768px) {
  th,
  td {
    padding: 12px 15px;
    font-size: 13px;
  }

  th {
    padding: 15px;
  }
  .padding-top{
  padding-top: 50px;
}
}

@media (max-width: 576px) {



  .text-block {
    font-size: 16px;
    margin: 15px auto;
  }

  .activities_card {
    padding: 20px 15px;
  }
 .padding-top{
  padding-top: 0px;
}
}

@media (max-width: 480px) {
  th,
  td {
    padding: 10px 10px;
    font-size: 12px;
  }

  table {
    min-width: 600px; 
  }

  .table-container {
    overflow-x: auto;
  }
}
body[lang="en"] {
.activities_card {
  
  text-align: left;
 
}

}