
        .share-buttons {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }
        .share-buttons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }
        .share-buttons a i {
            font-size: 18px;
        }
        .share-buttons a.facebook {
            background-color: #3b5998;
        }
        .share-buttons a.x {
            background-color: #000;
            color: white;
            font-weight: bold;
            font-size: 16px;
            padding: 1px 2px;
            border-radius: 50%;
        }
        .share-buttons a.linkedin {
            background-color: #0077b5;
        }
        .share-buttons a.whatsapp {
            background-color: #25D366;
        }
        .share-buttons a:hover {
            opacity: 0.8;
        }
   