
        .backhome-soft {
            width: 100%;
            box-sizing: border-box;
            margin: 20px 0;
            background: #f1f5f9;
            border-top: 4px solid #06b6d4;
            border-bottom: 4px solid #06b6d4;
            transition: 0.3s ease;
        }

        .backhome-soft:hover {
            background: #e9eef3;
        }

        .backhome-soft a {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 24px 20px;
            text-decoration: none;
            color: #0f172a;
            font-weight: 800;
            font-size: 20px;
            letter-spacing: 1px;
            gap: 14px;
        }

        .backhome-soft a .text {
            color: #075985;
        }

        .backhome-soft a .arrow {
            transition: transform 0.3s ease;
        }

        .backhome-soft:hover a .arrow {
            transform: translateX(8px);
        }
    