
        .containersosmed {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 50px;
        }

        .social-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .social-icon {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #fff;
            border-radius: 15px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .social-icon i {
            font-size: 36px;
        }

        .social-icon:hover {
            transform: translateY(-5px);
            box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
        }

        .youtube { color: #FF0000; }
        .tiktok { color: #000; }
        .instagram { color: #E4405F; }

        .social-name {
            font-size: 16px;
            margin-top: 10px;
            font-weight: bold;
            display: none;
        }