/* .contribute-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
  } */
    
  .task-list {
    list-style-type: none;
    padding-left: 0;
  }
  
  .task-item {
    background-color: #f0f8ff;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .task-item h3 {
    color: var(--secondary-color);
    margin-top: 0;
  }
  
  .code-block {
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    overflow-x: auto;
  }
  
  @media (max-width: 768px) {
    .contribute-section {
      padding: 10px;
    }
  }