.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding-top: 20px;
  }
  
  .contact-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
  }
  
  .contact-icon {
    font-size: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
  }
  
  .contact-item h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
  }
  
  .contact-item p {
    color: #555;
    line-height: 1.5;
  }
  
  .contact-item a {
    color: #007BFF;
    text-decoration: none;
  }
  
  .contact-item a:hover {
    text-decoration: underline;
  }
  