body {
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
  }
  
  .tech-support-section {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    margin: 20px;
  }
  
  .support-content h2 {
    font-size: 18px;
    color: #007bff;
    font-weight: bold;
  }
  
  .support-item h4 {
    font-size: 16px;
    color: #343a40;
    font-weight: bold;
  }
  
  .support-item p {
    font-size: 14px;
    color: #555;
  }
  
  .support-item a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .support-item a:hover {
    color: #0056b3;
    text-decoration: underline;
  }
  
  .support-content {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .support-image img {
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .support-image img:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  }
  