.contribute-section {
    background-color: #f5f5f5;
    padding: 100px 0;
  }
  
  .contribute-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
  }
  
  .contribute-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .contribute-item {
    background-color: #fff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
  }
  
  .contribute-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
  }
  
  .contribute-item p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #666;
  }
  /*Links*/
  .links-section {
    background-color: #f5f5f5;
    padding: 80px 0;
  }
  
  .links-section .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .links-section .section-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
  }
  
  .links-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .link-box {
    width: 300px;
    margin: 20px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .link-box:hover {
    transform: translateY(-10px);
  }
  
  .link-btn {
    display: block;
    padding: 20px;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    transition: background-color 0.3s ease;
  }
  
  .link-btn:hover {
    background-color: #333;
    color: #fff;
  }
  
  .link-btn i {
    margin-right: 10px;
    font-size: 30px;
  }
  
  .link-box p {
    font-size: 18px;
    line-height: 1.5;
    color: #666;
    padding: 20px;
  }
  