.flink {
            display: inline-block;
            padding: 8px 16px;
            margin: 5px;
            background-color: #f8f9fa;
            border-radius: 6px;
            color: #007bff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: #007bff;
            color: white;
            transform: translateY(-3px);
        }
        .friendlink {
            background-color: #f1f8ff;
            padding: 30px;
            border-radius: 12px;
        }
        .hover-effect {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .hover-effect:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .responsive-img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 10px;
        }
        @media (max-width: 768px) {
            .friendlink {
                padding: 20px;
            }
            .flink {
                display: block;
                margin: 10px 0;
                text-align: center;
            }
        }
