.activities-section {
  background: linear-gradient(135deg, #eaf8ff 0%, #ffffff 100%);
  padding: 60px 0;
}

.activities-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.activities-text {
  flex: 1 1 400px;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #003f6d;
  text-align: center;
}

.section-line {
  border: none;
  border-top: 1px solid #ccc;
  margin: 10px auto 30px auto;
  width: 80%;
}

.activities-list {
  list-style: none;
  padding-left: 0;
}

.activities-list li {
  margin-bottom: 12px;
}

.activities-list a {
  color: #005b96;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.activities-list a:hover {
  text-decoration: underline;
}

.activities-image-gallery {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 400px;
}

.image-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 12px;
}

.image-card img {
  width: 100%;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  max-height: 260px;
}

@media (max-width: 768px) {
  .activities-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .activities-text,
  .activities-image-gallery {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .activities-image-gallery {
    margin-top: 30px;
  }
}
