/* Base Styles */
.image {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .image .frame {
    display: inline-block;
    border: 2px solid #ddd;
    padding: 10px;
    border-radius: 8px;
  }
  
  .image img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  .style1.icons {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .style1.icons li {
    position: relative;
  }
  
  .style1.icons a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    justify-content: center;
    background-color: #f5f5f5;
  }
  
  .style1.icons a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .style1.icons svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
  }
  
  .style1.icons .label {
    font-size: 12px;
    margin-top: 5px;
    display: block;
  }
  
  .style1.icons li > svg {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 16px;
    height: 16px;
    fill: #ff4757;
    display: none;
  }
  
  .style1.icons li:hover > svg {
    display: block;
  }
  
  /* Specific icon colors */
  .style1.icons .n01:hover { color: #E1306C; background-color: rgba(225, 48, 108, 0.1); } /* Instagram */
  .style1.icons .n02:hover { color: #1877F2; background-color: rgba(24, 119, 242, 0.1); } /* Facebook */
  .style1.icons .n03:hover { color: #0088CC; background-color: rgba(0, 136, 204, 0.1); } /* Telegram */
  .style1.icons .n04:hover { color: #FF0000; background-color: rgba(255, 0, 0, 0.1); } /* YouTube */
  .style1.icons .n05:hover { color: #25D366; background-color: rgba(37, 211, 102, 0.1); } /* User (assuming WhatsApp) */
  
  .style3 {
    text-align: center;
    margin-top: 30px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
  }
  
  /* Responsive adjustments */
  @media (max-width: 600px) {
    .style1.icons {
      gap: 10px;
    }
    
    .style1.icons a {
      width: 50px;
      height: 50px;
      padding: 8px;
    }
    
    .style1.icons svg {
      width: 20px;
      height: 20px;
    }
    
    .style1.icons .label {
      font-size: 10px;
    }
  }